4. Identify correct output def fun3(a,b,c): return a+1,b+2,c+3 t=fun3(10,20,30) print(t) B. 11 22 33 A. 11,22,33 D. (11 22 33 .. (11, 22, 33)
Answers
Answered by
1
11,22,33
Explanation:
def fun3(a,b,c):
return a+1,b+2,c+3
t=fun3(10,20,30)
print(t)
here,
the fun3(a,b,c)
the value of a is 10, b=20, c=30
in fun3 the values is return a+1. b+3 and c+3
hence the values will be 11,22,33
and print the values of a, b and c.
Similar questions
English,
4 days ago
English,
4 days ago
World Languages,
9 days ago
Chemistry,
8 months ago
English,
8 months ago