While Loop Iteration Quiz

While Loop Iteration Quiz

7th Grade

16 Qs

quiz-placeholder

Similar activities

Quiz pengembangan dan pengujian instruksi pemograman KAI kls 7

Quiz pengembangan dan pengujian instruksi pemograman KAI kls 7

7th Grade

20 Qs

soal informatika bab 3 kelas 7

soal informatika bab 3 kelas 7

7th Grade - University

20 Qs

Email, Hardware, Software, Troubleshooting, Input, Output

Email, Hardware, Software, Troubleshooting, Input, Output

6th - 8th Grade

20 Qs

Thử thách 9 - đường đua lập trình - tin 7

Thử thách 9 - đường đua lập trình - tin 7

7th Grade

20 Qs

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

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

7th Grade

20 Qs

[PTB] Quiz Lession 1 + 2

[PTB] Quiz Lession 1 + 2

6th - 8th Grade

19 Qs

MENGENAL CANVA

MENGENAL CANVA

7th Grade

20 Qs

Excel 7-klass 01.02.2025

Excel 7-klass 01.02.2025

7th Grade

15 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?