English

Find the output of the following program segment: a = 110 while a > 100: print(a) a -= 2 - Computer Science (Python)

Advertisements
Advertisements

Question

Find the output of the following program segment:

a = 110
while a > 100:
     print(a)
     a -= 2
Short Note

Solution

The value of ‘a’ is decreased by 2 on each iteration of the loop and when it reaches 100, the condition a >100 becomes false and the loop terminates.

OUTPUT:
110
108
106
104
102

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

APPEARS IN

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

Englishहिंदीमराठी


      Forgot password?
Use app×