While Loop Iteration Quiz

While Loop Iteration Quiz

7th Grade

16 Qs

quiz-placeholder

Similar activities

Quiz về kiểu dữ liệu Str

Quiz về kiểu dữ liệu Str

6th - 8th Grade

17 Qs

Python Junior

Python Junior

6th - 8th Grade

12 Qs

Programming Basics Quiz

Programming Basics Quiz

7th Grade

20 Qs

Diagnostico Grado Sexto

Diagnostico Grado Sexto

6th Grade - University

18 Qs

Python Basics: IDLE and Variables Quiz

Python Basics: IDLE and Variables Quiz

7th Grade

20 Qs

Thử thách 2 - Đường đua lập trình - Lớp 7

Thử thách 2 - Đường đua lập trình - Lớp 7

7th Grade

20 Qs

Thử thách 4-Đường đua lập trình - Tin học 7

Thử thách 4-Đường đua lập trình - Tin học 7

7th Grade

20 Qs

Python հարցեր 7-րդ դաս

Python հարցեր 7-րդ դաս

7th Grade

14 Qs

While Loop Iteration Quiz

While Loop Iteration Quiz

Assessment

Quiz

Information Technology (IT)

7th Grade

Hard

Created by

John Heatley

Used 1+ times

FREE Resource

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 ```

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?