4) What is the output of the following code fragment? def fun1(t): tt+2 return fun2(t-1,3) def fun2(t,n): return t+n t=6
Posted: Tue Apr 12, 2022 10:22 am
4) What is the output of the following code fragment? def fun1(t): tt+2 return fun2(t-1,3) def fun2(t,n): return t+n t=6 print(fun1(t), end=" ") print(t) A. 11 8 B. 11 6 C. 10 8 D. 10 6