हिंदी

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

प्रश्न

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='%')

विकल्प

  • 12%15#

  • 15#12%

  • 12#15%

  • 12%15#

MCQ

उत्तर

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2024-2025 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×