Vidyalelo
Python · Q76

Functions in Python

Programming · Python · question 76

Q76

What will be the output of the following Python code? def f(x, y, z): return x + y + z f(2, 30, 400)

A.
432
Answer
B.
24000
C.
430
D.
No output

Answer: Option A

Solution

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