What value will be returned, if x = math.floor(-24.6) ?
24.6
-24
-25
-24.6
Answer
-25
Reason — The math.floor() function returns the largest integer less than or equal to the given number. For math.floor(-24.6), the result is -25, which is the largest integer less than -24.6.