आउटपुट क्या होगा?
What will be the output?
def f(x,y,z):
return x+ y+ z
f(2,30,400)
A
432
B
24000
C
430
D
No output
Explanation
The function f(2, 30, 400) adds the values 2 + 30 + 400, which equals 432.
So, the correct answer is (A) 432.
Correct Answer: A) 432