English

Find the output of the following program segment: var = 7 while var > 0: print ('Current variable value: ', var) var = var -1 if var == 3: break else: if var == 6: var = var -1 continue - Computer Science (Python)

Advertisements
Advertisements

Question

Find the output of the following program segment:

var = 7
while var > 0:
          print ('Current variable value: ', var)
          var = var -1
          if var == 3:
              break
 else:
              if var == 6:
                      var = var -1
                     continue
 print ("Good bye!")
Short Note

Solution

OUTPUT: 

Current variable value: 7
Current variable value: 5
Good bye!
Current variable value: 4

shaalaa.com
The ‘While’ Loop
  Is there an error in this question or solution?
Chapter 6: Flow of Control - Exercise [Page 140]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 6 Flow of Control
Exercise | Q 5. (vi) | Page 140
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×