Shared workspace output
Python For Kids Quiz
@khalidoyMay 3, 2026
đ Python for Kids Quiz
Ages 9â12 | Beginner Level
Name: ____________________________
Date: ____________________________
Class/Section: ___________________
Score: ________ / 50
Instructions
# | Instruction |
|---|---|
1 | Read each question carefully before answering. |
2 | This quiz has four parts with 20 questions total. |
3 | Write clearly. For short answer questions, full sentences are not required â just the correct Python code or answer. |
4 | No computers, tablets, or Python interpreters allowed. |
5 | You may use scratch paper for working out answers. |
Time: 40 minutes | Total Points: 50
Part 1: Multiple Choice (10 Ă 2 pts = 20 pts)
Circle the one best answer for each question.
1. What will
print("Hello World") show on the screen?A. Hello World (with quotes)
B. Hello World (without quotes)
C. An error message
D. Nothing
2. Which of these is a correct variable name in Python?
A.
2coolB. my-scoreC. player_1D. class3. What does
len("Python") return?A. 5
B. 6
C. 7
D. Python
4. What will this code print?
A.
10 + 5B. 15C. age + 5D. 1055. Which symbol is used for comments in Python?
A.
//B. /*C. #D. --6. What does this loop print?
A. Hi Hi Hi (on three separate lines)
B. 0 1 2
C. Hi (once)
D. An error
7. What is the output of
print(10 > 5)?A. 10
B. 5
C. True
D. False
8. Which of these creates a list in Python?
A.
(1, 2, 3)B. [1, 2, 3]C. {1, 2, 3}D. `<1, 2, 3>`
Output community
Likes and comments
00
Loading comments...