Question: x = 5 while x < 9: print(x) x = x + 1 a) What is the output of this program b) Which variable is
x = 5
while x < 9:
print(x)
x = x + 1
a) What is the output of this program
b) Which variable is the loop control variable in the program?
c) Removing which line in the program causes an infinite loop?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
