u4- Loops in Python Quiz

u4- Loops in Python Quiz

2nd Grade

10 Qs

quiz-placeholder

Similar activities

scratch-lesson4

scratch-lesson4

1st - 5th Grade

12 Qs

Day 2 Quiz

Day 2 Quiz

1st - 12th Grade

10 Qs

Hari 3 - Kuis Coding & Perkenalan AI

Hari 3 - Kuis Coding & Perkenalan AI

2nd Grade - University

10 Qs

Kelas Inspirasi hari kedua

Kelas Inspirasi hari kedua

1st - 2nd Grade

10 Qs

แบบทดสอบก่อนเรียน

แบบทดสอบก่อนเรียน

KG - 3rd Grade

10 Qs

Minecraft+Python(Повт Урок 15)

Minecraft+Python(Повт Урок 15)

1st - 10th Grade

9 Qs

U4_Understanding Python While Loops

U4_Understanding Python While Loops

2nd Grade

10 Qs

u4- Loops in Python Quiz

u4- Loops in Python Quiz

Assessment

Quiz

Education

2nd Grade

Medium

Created by

Aram M

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a "while loop" used for in Python?

To repeat a block of code a specific number of times

To repeat a block of code as long as a condition is true

To organise data in a list

To print text on the screen

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a "for loop" used for in Python?

To repeat a block of code a specific number of times

To check if a number is even or odd

To add two numbers together

To draw shapes on the screen

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct example of a "while loop" in Python?

`while x < 5: print(x)`

`for x in range(5): print(x)`

`if x < 5: print(x)`

`print(x) while x < 5`

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct example of a "for loop" in Python?

`for x in range(5): print(x)`

`while x < 5: print(x)`

`if x < 5: print(x)`

`print(x) for x in range(5)`

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code print? ```python for i in range(3): print("Hello") ```

Hello

Hello Hello

Hello Hello Hello

Nothing

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code do? ```python x = 0 while x < 3: print(x) x += 1 ```

Print 0, 1, 2

Print 1, 2, 3

Print 0, 1, 2, 3

Print 3, 2, 1

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a "while loop", what does the condition do?

It decides how many times the loop will run

It checks if the loop should continue running

It prints the loop's output

It adds numbers together

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?