Please fill in your information:
Student ID
Name
Age
School
Python 4 Skills Test
Q1: Type exactly:
print("Hello World")
Submit Q1
Q2: Which filename is a valid Python file?
hello.txt
hello.py
hello.doc
Q3: How do you run a Python file?
run pythonfile.py
python pythonfile.py
open pythonfile.py
Q4: Which is a code editor?
MS Word
VS Code
YouTube
Q5: What will this code print?
if 10 > 5: print("A") else: print("B")
A
B
Error
Q6: Which code checks if a number is even?
if number % 2 == 0:
if number / 2:
if number = 2:
Q7: Imagine you can build any Python project. What would it be?
A robot that delivers snacks
A game where you dodge falling blocks
A boring calculator with no GUI
Q8: Which idea is most fun?
A chatbot that tells jokes
A calculator
A text-only website
Q9: What does a loop do in Python?
Repeats actions until a condition is met
Stores many files in folders
Sends emails automatically
Q10: What does this code do?
for i in range(3): print(i)
Prints 0, 1, 2
Prints 1, 2, 3
Prints numbers from 3 to 0
Submit Test