Which of the following for loops would print the following numbers?
0
1
2
3
4
5
Lesson 5 Looping Quiz
Quiz
•
Computers
•
10th - 12th Grade
•
Hard
Mubeen Yaqub
Used 21+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Which of the following for loops would print the following numbers?
0
1
2
3
4
5
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Which of the following for loops would print the following numbers?
3
5
7
9
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is the value of num when this loop completes?
num = 0
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
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
2 mins • 1 pt
What does this program print?
7.
MULTIPLE CHOICE QUESTION
1 min • 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
20 questions
Python - Iteration (For Loops)
Quiz
•
10th Grade
12 questions
Python Final 052224 - 3
Quiz
•
10th Grade
15 questions
Looping Review
Quiz
•
10th - 12th Grade
20 questions
Unit 5 TEST
Quiz
•
11th - 12th Grade
10 questions
Quiz 4 Edhesive Review
Quiz
•
9th - 12th Grade
10 questions
Advanced Python Iteration Quiz
Quiz
•
10th Grade
20 questions
Control Statements in Python
Quiz
•
11th Grade
20 questions
Chapter 5 loops structure
Quiz
•
10th Grade
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
20 questions
Taxes
Quiz
•
9th - 12th Grade
17 questions
Parts of Speech
Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression
Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing
Quiz
•
9th - 12th Grade
10 questions
Identifying equations
Quiz
•
KG - University