Unit 5 TEST

Quiz
•
Computers
•
11th - 12th Grade
•
Hard
Tywania Griffin
Used 18+ times
FREE Resource
20 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
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
1 min • 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
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
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?
temperature = 65
while temperature < 80:
print("It's still a nice day")
if temperature < 70:
temperature = temperature + 5
elif temperature > 75:
break
else:
temperature = temperature + 3
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 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
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Python Revision Tour - I

Quiz
•
12th Grade
20 questions
Control Statements in Python

Quiz
•
11th Grade
23 questions
AP CSP Unit 6 Practice

Quiz
•
11th Grade
22 questions
Python тілінде циклдар

Quiz
•
9th - 12th Grade
15 questions
Grade 12-Python selection&iteration

Quiz
•
11th - 12th Grade
16 questions
Loops

Quiz
•
5th - 12th Grade
15 questions
Python Unit 8 Quiz

Quiz
•
9th - 12th Grade
25 questions
CONDITIONAL STATEMENTS

Quiz
•
11th - 12th Grade
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
Discover more resources for Computers
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
40 questions
LSHS Student Handbook Review: Pages 7-9

Quiz
•
11th Grade
20 questions
Scalars, Vectors & Graphs

Quiz
•
11th Grade
62 questions
Spanish Speaking Countries, Capitals, and Locations

Quiz
•
9th - 12th Grade
10 questions
Solving Equations Opener

Quiz
•
11th Grade
20 questions
First Day of School

Quiz
•
6th - 12th Grade
6 questions
Maier - AMDM - Unit 1 - Quiz 1 - Estimation

Quiz
•
12th Grade