English

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='%') - Computer Science (Python)

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:

  1. Initially, c = 10.
  2. The add() the function is called.
    1. Inside add(), the global variable c is incremented by 2 (c = 12).
    2. print(c, end='#') prints 12#.
  3. After the function call, c is reassigned to 15.
  4. print(c, end='%') prints 15%
shaalaa.com
  Is there an error in this question or solution?
2024-2025 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×