Kizspy Question: 35
(Choose 1 answer)
RUUVERÒ, JW ban
What is the output of the following program?
def outerFunction():
global a
a 20
def innerFunction():
global a
a = 30
print('a', a)
a = 10
outerFunction()
print('a =', a)
A. a 10 a 30
B. a 10
C. a = 20
D. a 30