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
-
answerhappygod
- Site Admin
- Posts: 899604
- 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
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!