Vidyalelo
Python · Q127

Functions in Python

Programming · Python · question 127

Q127

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
Answer
B.
314
24
C.
567
98
D.
None of the mentioned

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board