What will be the output of the following program.?
(a) 1 def increase (x): (b) a=1
2 a=a+x def f():
3 return a=10
4 print(a)
5 a=20
6 b=5
7 increase (b)
8 print(a)
Answer:
(a)
This code gives an error as there is no value assigned to ‘a’ in the function ‘increase( )’.
(b)
The code gives an output 1 .