Python Final 052224 - 3

Quiz
•
Computers
•
10th Grade
•
Medium
Charles Moriarty
Used 1+ times
FREE Resource
12 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 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
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(1)
for i in range(9): print(1)
for i in range(3,9): print(1)
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?
secret_num = 10 while secret_num == 10: secret_num = secret_num - 1
secret_num = 10 while secret_num == 10: print(secret_num)
secret_num = 10 while secret_num > 0: secret_num = secret_num - 1
secret_num = 10 while secret_num != 10: print(secret_num)
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Looping Review

Quiz
•
10th - 12th Grade
10 questions
Arrays

Quiz
•
10th - 12th Grade
10 questions
Python Level 2- Lesson 2

Quiz
•
10th Grade
10 questions
Advanced Python Iteration Quiz

Quiz
•
10th Grade
10 questions
Python Basics - A level

Quiz
•
10th - 12th Grade
13 questions
PS Разминка перед циклами

Quiz
•
9th - 12th Grade
7 questions
S5 Programming Quiz

Quiz
•
10th Grade
13 questions
SUB SUMATIF GENAP INFORMATIKA

Quiz
•
10th Grade
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
10 questions
UPDATED FOREST Kindness 9-22

Lesson
•
9th - 12th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
US Constitution Quiz

Quiz
•
11th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
20 questions
Analog vs Digital

Quiz
•
9th - 12th Grade
10 questions
Exploring Cybersecurity Techniques and Threats

Interactive video
•
6th - 10th Grade
10 questions
Understanding the Internet and Data Transmission

Interactive video
•
7th - 12th Grade