Vidyalelo
Python · Q133

Functions in Python

Programming · Python · question 133

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
Answer
B.
inner
error
C.
outer
inner
D.
error

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board