QUESTION IMAGE
Question
______ returns the smallest integer greater than or equal to 7.3
assume you have already entered the following line.
from math import *
floor(7.3)
larger(7.3)
ceil(7.3)
Brief Explanations
The ceil function in Python's math module returns the smallest integer greater than or equal to a given number. The floor function returns the largest integer less than or equal to the number. There is no built - in larger or roundd function as shown in the options in the standard Python math library for this specific purpose.
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
C. ceil(7.3)