CS1 End-o-year Review

Quiz
•
Computers
•
10th Grade
•
Hard
Danielle Mills
Used 3+ times
FREE Resource
43 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output by the code below?
cntr = 0
for c in range(0, 10, 4):
cntr += 1
print(cntr) #out of loop
2
3
4
5
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output by the code below?
n = 2
total = 0
while(n < 9):
total=total + n #in loop
n += 1 #in loop
print(total) #out of loop
104
54
44
35
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output by the code below?
list = [33,14,37,11,27]
print(list[0])
27
11
33
There is no output due to a syntax error.
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output by the code below?
list = [33,14,37,11,27]
print(list[len(list)-1])
27
11
33
14
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output by the code below?
list = [33,14,37,11,27]
print(list[len(list)])
a. 14
b. 11
c. 33
d. There is no output due to a runtime exception.
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output by the code below?
list = [33,14,37,11,27,4,6,2,6]
print(len(list))
a. 10
b. 9
c. 11
d. 5
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output by the code below
nums = [0,0,0,0,0,0,0,0,0]
for i in range(len(nums)):
nums[i] = i * 2
print(nums[8]) #outside loop
a. 10
b. 12
c. 14
d. 16
Create a free account and access millions of resources
Similar Resources on Wayground
42 questions
App inventor

Quiz
•
7th Grade - University
44 questions
Python Test 2

Quiz
•
7th - 12th Grade
39 questions
WJEC 1.1.2 Input/Output Devices

Quiz
•
9th - 10th Grade
38 questions
Computer Hardware Basics+

Quiz
•
7th - 12th Grade
40 questions
Introduction to Microsoft Word

Quiz
•
8th - 12th Grade
45 questions
tinck2

Quiz
•
10th Grade
40 questions
KUIS

Quiz
•
10th Grade
40 questions
Python Data Types

Quiz
•
8th - 12th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

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

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

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

Interactive video
•
6th - 10th Grade
10 questions
1.2 OSI & TCP IP Models Quiz

Quiz
•
10th Grade
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
20 questions
Hardware vs. Software Quiz

Quiz
•
7th - 10th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade