CODEHS Looping Unit 5 Review

Flashcard
•
Computers
•
9th - 12th Grade
•
Hard
Wayground Content
FREE Resource
Student preview

10 questions
Show all answers
1.
FLASHCARD QUESTION
Front
Which of the following for loops would print the following numbers?
0
1
2
3
4
5
Options:
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
Back
for i in range(6): print i
2.
FLASHCARD QUESTION
Front
Which of the following for loops would print the following numbers?
3
5
7
9
Options:
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
Back
for i in range(3, 10, 2):
print i
3.
FLASHCARD QUESTION
Front
What is the value of num when this loop completes?
num = 0
for i in range(2, 8, 2):
num = num + i
Type in your answer
Back
12
4.
FLASHCARD QUESTION
Front
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
Back
while num < 12 and num > 3:
# do something with num
5.
FLASHCARD QUESTION
Front
Which of the following while loops will cause an infinite loop?
Back
6.
FLASHCARD QUESTION
Front
What will be printed to the screen when this program is run? Options: 0, 1, 0, 1; 0, 2; 0, 1, 0, 1, 0, 1; 1, 2, 1, 2, 1, 2
Back
0
1
0
1
7.
FLASHCARD QUESTION
Front
What is the value of sum when this loop completes?
Back
9
Create a free account and access millions of resources
Similar Resources on Wayground
8 questions
Python Functions

Flashcard
•
9th - 12th Grade
2 questions
Python -- Index/String

Flashcard
•
9th - 12th Grade
9 questions
STRING MANIPULATION (PYTHON)

Flashcard
•
11th - 12th Grade
10 questions
CB-IN8 Noções de Programação

Flashcard
•
KG - University
10 questions
Recursion Flashcard

Flashcard
•
9th - 12th Grade
9 questions
Unit 7- Global Conflicts AP World

Flashcard
•
10th - 12th Grade
13 questions
Python variables, expressions, and data types

Flashcard
•
9th - 12th Grade
10 questions
Ôn tập chủ đề F

Flashcard
•
KG
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th 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
10 questions
Proper Keyboarding Techniques

Interactive video
•
6th - 10th Grade
14 questions
Inputs and Outputs: Computer Science Intro

Lesson
•
5th - 9th Grade
10 questions
Understanding Computers: Hardware, Software, and Operating Systems

Interactive video
•
7th - 12th Grade
29 questions
AP CSP Unit 2 Review (Code.org)

Quiz
•
10th - 12th Grade