

InterviewSolution
Saved Bookmarks
1. |
What is returned by math.ceil(3.4)?(a) 3(b) 4(c) 4.0(d) 3.0 |
Answer» The correct choice is (b) 4 The explanation: The ceil function returns the smallest integer that is bigger than or equal to the number itself. |
|