Examveda

What will be the output of the following Python code?
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: Option A


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python