MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following piece of code? def fun(n): if (n > 100): return n - 5 return fun(fun(n+11)); print(fun(45)) |
| A. | 50 |
| B. | 100 |
| C. | 74 |
| D. | Infinite loop |
| Answer» C. 74 | |