u4- Loops in Python Quiz

u4- Loops in Python Quiz

2nd Grade

10 Qs

quiz-placeholder

Similar activities

ALGORITHMS QUIZ (Post)

ALGORITHMS QUIZ (Post)

1st Grade - University

10 Qs

Câu hỏi ôn tập Python lần 1

Câu hỏi ôn tập Python lần 1

KG - 12th Grade

14 Qs

Session 1 - NodeJS

Session 1 - NodeJS

1st - 5th Grade

10 Qs

Hari ke 3 - Kuis Coding & Perkenalan AI

Hari ke 3 - Kuis Coding & Perkenalan AI

2nd Grade

10 Qs

Master Class Little Champs

Master Class Little Champs

KG - 2nd Grade

15 Qs

Deutschkurs

Deutschkurs

1st - 3rd Grade

9 Qs

Hari 3 - Kuis Coding & Perkenalan AI

Hari 3 - Kuis Coding & Perkenalan AI

KG - Professional Development

10 Qs

Hari 3 - Kuis Coding & Perkenalan AI

Hari 3 - Kuis Coding & Perkenalan AI

1st - 3rd 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?