Answer:
Explanation:
Required
Which returns smallest integer greater than or equal to 7.3
i.e.
[tex]x \le 7.3[/tex]
When executed, the result of each instruction is:
[tex]ceil(7.3) = 8[/tex] -- This returns the smallest integer greater than 7.3
[tex]floor(7.3) = 7[/tex] --- This returns the smallest integer less than 7.3
[tex]larger(7.3)[/tex] --- there is no such thing as larger() in python
[tex]round(7.3) = 7[/tex] --- This rounds 7.3 to the nearest integer
From the above result,
8 is the smallest integer greater than or equal to 7.3
i.e.
[tex]8 \ge 7.3[/tex]
Hence:
[tex]ceil(7.3)[/tex] is correct