Q133
What will be the output of the following Python code? def f(x): print("outer") def f1(a): print("inner") print(a,x) f(3) f1(1)
A.
outer
error
Answererror
B.
inner
error
error
C.
outer
inner
inner
D.
error
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board