Unit 5 Python CodeHS

Unit 5 Python CodeHS

15 Qs

quiz-placeholder

Similar activities

For Loop Python_2024

For Loop Python_2024

Professional Development

20 Qs

Python - Loops & Lists

Python - Loops & Lists

7th - 11th Grade

15 Qs

PCEP Section 2B: Perform different types of iterations

PCEP Section 2B: Perform different types of iterations

12th Grade

15 Qs

Unit 3 Looping - Quiz

Unit 3 Looping - Quiz

9th Grade - University

20 Qs

LOOPS

LOOPS

7th - 9th Grade

10 Qs

Looping Review

Looping Review

10th - 12th Grade

15 Qs

Unit 5 TEST

Unit 5 TEST

11th - 12th Grade

20 Qs

Python Unit 5 Looping

Python Unit 5 Looping

9th - 12th Grade

15 Qs

Unit 5 Python CodeHS

Unit 5 Python CodeHS

Assessment

Quiz

Hard

Created by

Chad (SCMS)

FREE Resource

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
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?