Advertisements
Advertisements
Question
What will be the output of the following code?
c = 10
def add():
global c
c = c + 2
print(c,end='#')
add()
c=15
print(c,end='%')
Options
12%15#
15#12%
12#15%
12%15#
MCQ
Solution
12#15%
Explanation:
- Initially,
c = 10
. - The
add()
the function is called.- Inside
add()
, the global variablec
is incremented by 2 (c = 12
). print(c, end='#')
prints12#
.
- Inside
- After the function call,
c
is reassigned to15
. print(c, end='%')
prints15%
.
shaalaa.com
Is there an error in this question or solution?