What is the output of math.ceil(4.4) ?
5
Reason — The math.ceil() function returns the smallest integer greater than or equal to the given number. For math.ceil(4.4), it returns 5, which is the smallest integer greater than 4.4.
math.ceil()
math.ceil(4.4)