What will be the output of the following code:
from math import ceil
print(ceil(4.3))
print(ceil(4.3))
A. The smallest integer greater than or equal to 4.3
B. An error will occur
C. 4
D. 5
Answer: Option A

Join The Discussion