
While Loop Iteration Quiz
Authored by John Heatley
Information Technology (IT)
7th Grade
Used 1+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
16 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the main purpose of using a `while` loop in Python?
To repeat a block of code as long as a condition is true
To execute code only once
To define a function
To import a library
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will the following code print? ```python count = 0 while count < 3: print(count) count += 1 ```
0 1 2
1 2 3
0 1 2 3
1 2
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will happen if the condition in a `while` loop is always `True`?
The loop will run forever
The loop will never run
The loop will run once
The loop will cause an error
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times will the following loop run? ```python x = 5 while x > 0: x -= 1 ```
4
5
6
0
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of this code? ```python num = 1 while num < 4: print(num * 2) num += 1 ```
2 4 6
1 2 3
2 3 4
2 4 8
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the value of `total` after this code runs? ```python total = 0 i = 1 while i <= 3: total += i i += 1 ```
3
6
5
4
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following is a correct `while` loop to print numbers from 1 to 5?
```python i = 1 while i <= 5: print(i) i += 1 ```
```python i = 1 while i < 5: print(i) i += 1 ```
```python i = 1 while i == 5: print(i) i += 1 ```
```python i = 1 while i > 5: print(i) i += 1 ```
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?