Find the output of the following program segments: a = 110 while a > 100: print (a) a – = 2


a = 110: Variable a is assigned an integer value 110.
while a > 100: Condition of while loop is declared in this segment of the program and code written with indentation under while loop is the body of the while loop.
print (a): This statement will print the value stored in the variable a till the value of a is greater than 100.
a – = 2: This expression is equivalent to a = a – 2 and it will decrease the value of a by 2.

Final Answer:
Hence, the output of the following program segments is,
110
108
106
104
102