Quiz Complete, well Done!
Indefinite Iteration
A
loop is an example of indefinite iteration.
Which keyword is used for infinite loops in Python?
What is the purpose of a while loop?
Which loop is ideal when the number of iterations is unknown?
A common method to exit a loop is using the
statement.
What does the 'continue' statement do in a loop?
What is the purpose of a while loop?
What is the syntax of a while loop?
For loop
While loop
Which programming language supports the break statement?
In Python, the while loop is defined with the
keyword.
Which programming construct is commonly used with the 'continue' statement?
A do-while loop is an example of a loop with
condition.
Infinite loop
Break statement
What is the output of the following code?
i = 0
while i < 5:
i += 1
if i == 3:
continue
print(i)
When is the 'continue' statement used in programming?
Which loop is ideal when the number of iterations is known?