Computer Science, asked by anushanush844, 9 days ago

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 shilpa85475
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