CodeHS Python Unit 7 Looping Quiz Review

CodeHS Python Unit 7 Looping Quiz Review

9th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

Code.org Express Course Quiz 2

Code.org Express Course Quiz 2

Lesson 1-5 Review

Lesson 1-5 Review

Learn to Code 1 - Test

Learn to Code 1 - Test

Python For Loops Quiz

Python For Loops Quiz

Codemonkey :)

Codemonkey :)

Coding

Coding

Intro to CS

Intro to CS

Coding Basics

Coding Basics

CodeHS Python Unit 7 Looping Quiz Review

CodeHS Python Unit 7 Looping Quiz Review

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Katy Fleming

Used 55+ 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

3 mins • 1 pt

Media Image

What is the benefit of using the break command as in the program below?

The user can enter as many answers as they want

The program will break out of the loop as soon as the user enters the magic_number

The loop will prompt the user to enter a number no matter what input they give

The loop will give the magic_number after a certain number of tries

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

What will be printed to the screen when this program is run?

100 0 -75 -125 -150

-150

-175

175

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

What does this program print?

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

It’s still a nice day

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

What is the value of sum when this loop completes?

8

9

20

0

5.

MULTIPLE CHOICE QUESTION

3 mins • 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

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

If the user enters ‘4’, I want the loop to exit. Where should the break command be placed in order to end the loop when the user enters this value?

Line 3

Line 5

Line 7

Line 9

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

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

3 5 7 9

for i in range(3, 10, 2):

print(i)

for i in range(3, 9, 2):

print(i)

for i in range(9):

print(i)

for i in range(3,9):

print(i)

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

Already have an account?