93.6k views
4 votes
5. Give the output of the following:

a.print(math.pow(3,2))
b.print(math.ceil(-1.5))
c.print(math.floor(5.2)) *
(1 Point)
a.6.0 b.-2 c. 6
a.9.0 b. -1 c.5
a.9.0 b.-2 c.6
a.6.0 b.-1 c.5

User Tiedt Tech
by
6.4k points

1 Answer

3 votes

Answer:

B

Step-by-step explanation:

You can run this easily in an online python environment such as repl.it.

User Ilmari Heikkinen
by
7.6k points