What will be the output of the following Python code?
def C2F(c):
return c * 9/5 + 32
print C2F(100)
print C2F(0)
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

Join The Discussion