Page 1 of 1

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
by answerhappygod
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 1
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 1 (23.17 KiB) Viewed 28 times
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