MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the code shown below? def f(x): print("outer") def f1(a): print("inner") print(a,x) f(3) f1(1) |
| A. | outer error |
| B. | nner error |
| C. | outer inner |
| D. | error |
| Answer» B. nner error | |