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