Which of the following for loops would print the following numbers? 0 1 2 3 4 5

Looping Unit

Quiz
•
Other
•
9th Grade
•
Medium
Laura Colley
Used 23+ times
FREE Resource
25 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
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.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the value of num when this loop completes?
num = 0
for i in range (2, 8, 2)
num = num + i
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
30 sec • 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
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:
while num < 12 or num < 3:
while num <= 12 and num >= 3:
while num < 12 and num > 3:
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following while loops will cause an infinite loop?
A. secret_num = 10 while secret_num == 10: secret_num = secret_num - 1
B. secret_num = 10 while secret_num == 10: print(secret_num)
C. secret_num = 10 while secret_num > 0: secret_num = secret_num - 1
D. secret_num = 10 while secret_num != 10: print(secret_num)
Create a free account and access millions of resources
Similar Resources on Quizizz
20 questions
Excel 2019 Core Vocab

Quiz
•
9th - 12th Grade
20 questions
Engineering Design process

Quiz
•
9th - 12th Grade
20 questions
9-klass 4-sherek

Quiz
•
9th Grade
20 questions
Fingerprint Pattern Quiz

Quiz
•
9th - 12th Grade
25 questions
AP Comp Sci A MidTerm Review

Quiz
•
9th - 12th Grade
25 questions
Python. Теория.

Quiz
•
9th Grade
30 questions
Quiz Linguagem de Programação C

Quiz
•
1st - 11th Grade
20 questions
Classroom Procedures

Quiz
•
9th - 12th Grade
Popular Resources on Quizizz
15 questions
Multiplication Facts

Quiz
•
4th Grade
25 questions
SS Combined Advisory Quiz

Quiz
•
6th - 8th Grade
40 questions
Week 4 Student In Class Practice Set

Quiz
•
9th - 12th Grade
40 questions
SOL: ILE DNA Tech, Gen, Evol 2025

Quiz
•
9th - 12th Grade
20 questions
NC Universities (R2H)

Quiz
•
9th - 12th Grade
15 questions
June Review Quiz

Quiz
•
Professional Development
20 questions
Congruent and Similar Triangles

Quiz
•
8th Grade
25 questions
Triangle Inequalities

Quiz
•
10th - 12th Grade
Discover more resources for Other
40 questions
Week 4 Student In Class Practice Set

Quiz
•
9th - 12th Grade
40 questions
SOL: ILE DNA Tech, Gen, Evol 2025

Quiz
•
9th - 12th Grade
20 questions
NC Universities (R2H)

Quiz
•
9th - 12th Grade
24 questions
LSO - Virus, Bacteria, Classification - sol review 2025

Quiz
•
9th Grade
65 questions
MegaQuiz v2 2025

Quiz
•
9th - 12th Grade
10 questions
GPA Lesson

Lesson
•
9th - 12th Grade
15 questions
SMART Goals

Quiz
•
8th - 12th Grade
10 questions
Exponential Growth and Decay Word Problems

Quiz
•
9th Grade