Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

______ returns the smallest integer greater than or equal to 7.3 assume…

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)

Explanation:

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)