______ returns the smallest integer greater than or equal to 7.3\nassume you have already entered the…

______ returns the smallest integer greater than or equal to 7.3\nassume you have already entered the following line.\nfrom math import *\n\nfloor(7.3)\nlarger(7.3)\nceil(7.3)

______ returns the smallest integer greater than or equal to 7.3\nassume you have already entered the following line.\nfrom math import *\n\nfloor(7.3)\nlarger(7.3)\nceil(7.3)

Answer

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.

Answer:

C. ceil(7.3)