Question
How many times is the condition checked?
index = 0
string = "ape"
while index < len(string):
print(string[index])
Question
How many times is the body of the loop executed?
index = 0
string = "ape"
while index < len(string):
print(string[index])
Question
How many times is the condition checked?
index = 0
string = "ape"
while index < len(string):
print(string[index])
index = index + 1
Question
How many times is the body of the loop executed?
index = 0
string = "ape"
while index < len(string):
print(string[index])
index = index + 1
Question
How many times is the condition checked?
index = 0
string = ""
while index < len(string):
print(string[index])
index = index + 1
Question
How many times is the body of the loop executed?
index = 0
string = ""
while index < len(string):
print(string[index])
index = index + 1
Question
How many times is the condition checked?
x = 10
while 0 < x and x < 20:
x = x + 5
print(x)
Question
How many times is the body of the loop executed?
x = 10
while 0 < x and x < 20:
x = x + 5
print(x)
Question
In the box provided, enter the value produced by the following program:
x = 10
while 0 < x and x < 20:
x = x + 5
print(x)
Question
In the box provided, enter the value produced by the following program:
x = 10
while x > 10:
x = x - 1
print(x)