adplus-dvertising
frame-decoration

Question

What is the output of the below program?
def C2F(c):
    return c * 9/5 + 32
print C2F(100)
print C2F(0)

a.

212
32

b.

314
24

c.

567
98

d.

None of the mentioned

Answer: (a).212
32

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the below program?