CODEHS Looping Unit 5 Review

CODEHS Looping Unit 5 Review

9th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

Kuis Dadakan ;)

Kuis Dadakan ;)

10th Grade - University

15 Qs

Quiz 1.2 Operating system

Quiz 1.2 Operating system

10th Grade

10 Qs

C# lesson10

C# lesson10

1st - 10th Grade

10 Qs

Excel - basic

Excel - basic

9th Grade

15 Qs

Networks

Networks

7th - 9th Grade

13 Qs

Cyber Security Homework 1

Cyber Security Homework 1

7th - 9th Grade

15 Qs

Ethical and Social Issues in ICT

Ethical and Social Issues in ICT

10th Grade

15 Qs

ICT Java programming workshop

ICT Java programming workshop

9th Grade

10 Qs

CODEHS Looping Unit 5 Review

CODEHS Looping Unit 5 Review

Assessment

Quiz

Computers

9th - 12th Grade

Practice Problem

Medium

Created by

Mr Bushee

Used 23+ times

FREE Resource

AI

Enhance your content in a minute

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

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

0

1

2

3

4

5

for i in range(5): print i

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

print i

for i in range(6): print i

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

print i

2.

MULTIPLE CHOICE QUESTION

30 sec • 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

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What is the value of num when this loop completes?

num = 0


for i in range(2, 8, 2):

num = num + i


Type in your answer

4.

MULTIPLE CHOICE QUESTION

30 sec • 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

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following while loops will cause an infinite loop?

Media Image
Media Image
Media Image
Media Image

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

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

0

1

0

1

0

2

0

1

0

1

0

1

1

2

1

2

1

2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the value of sum when this loop completes?

8

9

20

0

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?