- 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 27 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
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 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
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