Font size
WorksheetsAdventure game project
Total questions: 12
Worksheet time: 4mins
What is the name of the programming language we are making our game with?
Python
Boa Constrictor
Cobra
Anaconda
What was the name of the game we played to learn how these games work?
Zork
Manic Miner
Pac-Man
Donkey Kong
The type of game we are making is called a (a) -based adventure game.
What is the command which makes something appear on the screen?
show
display
output
What symbol must immediately follow a print command?
(
"
!
#
What command allows the player to type something in?
input
output
if
What are the correct three terms for when the program needs to make a choice?
if... elif.... else
if... else... or
if... then... else
do... or... if...
It does not matter how far from the left margin you add your code in a Python progam.
True
False
The amount of empty space at the start of a line of programming is known as the...
Indentation
Whitespace
Blank space
Outer space
A small block of code inside the main program. It can be re-used and run at any time.
Mini-program
Subroutine
Micro-program
Subprogram
What command indicates a new subroutine is going to be created?
def
sub
create
new
A subroutine will run as soon as it has been defined.
True
False
