Lesson 5 Looping Quiz

Lesson 5 Looping Quiz

10th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

Word 2016 Lesson 1

Word 2016 Lesson 1

9th - 12th Grade

10 Qs

ICT as Platform for Change

ICT as Platform for Change

11th - 12th Grade

10 Qs

emtech

emtech

12th Grade

10 Qs

Visual Basic 2010

Visual Basic 2010

8th Grade - University

10 Qs

Skill Competition Quiz 2024

Skill Competition Quiz 2024

10th Grade - University

20 Qs

Numpy-1

Numpy-1

9th - 12th Grade

10 Qs

Test on Python Function

Test on Python Function

11th - 12th Grade

12 Qs

Coding Karel 2

Coding Karel 2

KG - University

20 Qs

Lesson 5 Looping Quiz

Lesson 5 Looping Quiz

Assessment

Quiz

Computers

10th - 12th Grade

Practice Problem

Hard

Created by

Mubeen Yaqub

Used 21+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following for loops would print the following numbers?


0

1

2

3

4

5

Media Image
Media Image
Media Image
Media Image

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following for loops would print the following numbers?


3

5

7

9

Media Image
Media Image
Media Image
Media Image

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the value of num when this loop completes?

num = 0

2

8

12

20

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following for loops will give the same values for i as the loop below?


for i in range(10):

for i in range(11, 0):

for i in range(10, 0, -1):

for i in range(0, 10):

for i in range(0, 11, 1):

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Three of the for loops below will provide identical values for i.

Which for loop will provide values that do not match the others?

for i in range(0, 5):

for i in range(5):

for i in range(0, 5, 1):

for i in range(5, 0, 1):

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What does this program print?

Media Image
Media Image
Media Image
Media Image

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following while loops would continue to loop as long as num has values between the range of 3-12, exclusive?

while num > 12 and num < 3:

# do something with num

while num < 12 or num < 3:

# do something with num

while num <= 12 and num >= 3:

# do something with num

while num < 12 and num > 3:

# do something with num

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?