How many numbers does this code output?
x = 0
while x < 8:
print(x)
x +=1
Introduction to Python - Loops and Logic
Quiz
•
Computers
•
1st - 6th Grade
•
Easy
Khadeeja Haji
Used 15+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many numbers does this code output?
x = 0
while x < 8:
print(x)
x +=1
The numbers from 0 to 7
The numbers from 0 to 8
The numbers from 1 to 8
The numbers from 1 to 7
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many stars does this code output?
for i in range(5):
print("*")
1
2
4
5
3.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
What is missing in this code for it to work properly?
x=0
while x < 5:
print(x)
x + 1
x += 1
x
+1
4.
MULTIPLE CHOICE QUESTION
30 sec • 2 pts
Which line makes this an infinite loop?
x = 6
while True:
print(x)
if x == 4:
break
x+=1
x+=1
break
while True
x == 4
Answer explanation
A while loop runs as long as the condition it has is true, in this case True can never be false, so the line that makes it INFINITE (it runs forever) is:
while True
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What type of loop is a for loop?
a conditional loop
a counter controlled loop
a variable
a number
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What type of loop is a while loop?
a counter controlled loop
a variable
a letter
a conditional loop
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many numbers will this loop print?
for i in range(1,7):
print(i)
Numbers 1 to 6
Numbers 0 to 7
Numbers 1 to 7
Numbers 1 to 8
12 questions
Previous set Capgemini
Quiz
•
1st - 3rd Grade
10 questions
Yr 7 Flowgorithm
Quiz
•
3rd Grade
15 questions
C++ While Loops
Quiz
•
6th - 8th Grade
10 questions
G6_For Loop
Quiz
•
6th - 8th Grade
10 questions
Pseudo code Practice 1
Quiz
•
1st - 3rd Grade
9 questions
Conditionals and Loops
Quiz
•
6th Grade
10 questions
Python Variables
Quiz
•
6th Grade
10 questions
8.3 Micropython unit tests
Quiz
•
5th 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
15 questions
Character Analysis
Quiz
•
4th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th 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
20 questions
Final Exam Vocabulary
Quiz
•
6th Grade
11 questions
Decimal/fraction conversions quick check
Quiz
•
5th - 7th Grade
10 questions
Identifying equations
Quiz
•
KG - University