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

Python Looping Unit Quiz

Quiz
•
9th - 12th Grade
•
Medium
Tracy Hebert
Used 758+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 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
print i in range(0,5,1):
print i
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Which of the following for loops would print the following numbers?
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
1 min • 1 pt
What is the value of num when this loop completes?
2
8
12
20
4.
MULTIPLE CHOICE QUESTION
1 min • 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
1 min • 1 pt
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
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Which of the following while loops would continue to loop as long as num has values in the range 3 to 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
Similar Resources on Wayground
20 questions
Control Statements in Python

Quiz
•
11th Grade
20 questions
Python for loop

Quiz
•
12th Grade
20 questions
Programming 1 Test Review (End of Quarter)

Quiz
•
11th Grade
15 questions
Python for loop/lists

Quiz
•
9th Grade - University
15 questions
Looping Review

Quiz
•
10th - 12th Grade
20 questions
Unit 5 TEST

Quiz
•
11th - 12th Grade
12 questions
Python Final 052224 - 3

Quiz
•
10th Grade
10 questions
Advanced Python Iteration Quiz

Quiz
•
10th Grade
Popular Resources on Wayground
25 questions
Equations of Circles

Quiz
•
10th - 11th Grade
30 questions
Week 5 Memory Builder 1 (Multiplication and Division Facts)

Quiz
•
9th Grade
33 questions
Unit 3 Summative - Summer School: Immune System

Quiz
•
10th Grade
10 questions
Writing and Identifying Ratios Practice

Quiz
•
5th - 6th Grade
36 questions
Prime and Composite Numbers

Quiz
•
5th Grade
14 questions
Exterior and Interior angles of Polygons

Quiz
•
8th Grade
37 questions
Camp Re-cap Week 1 (no regression)

Quiz
•
9th - 12th Grade
46 questions
Biology Semester 1 Review

Quiz
•
10th Grade
Discover more resources for
25 questions
Equations of Circles

Quiz
•
10th - 11th Grade
30 questions
Week 5 Memory Builder 1 (Multiplication and Division Facts)

Quiz
•
9th Grade
33 questions
Unit 3 Summative - Summer School: Immune System

Quiz
•
10th Grade
37 questions
Camp Re-cap Week 1 (no regression)

Quiz
•
9th - 12th Grade
46 questions
Biology Semester 1 Review

Quiz
•
10th Grade