wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Adventure game project

Total questions: 12

Worksheet time: 4mins

Name
Class
Date
1.

What is the name of the programming language we are making our game with?

a)

Python

b)

Boa Constrictor

c)

Cobra

d)

Anaconda

2.

What was the name of the game we played to learn how these games work?

a)

Zork

b)

Manic Miner

c)

Pac-Man

d)

Donkey Kong

3.

The type of game we are making is called a (a)   -based adventure game.

4.

What is the command which makes something appear on the screen?

a)

print

b)

show

c)

display

d)

output

5.

What symbol must immediately follow a print command?

a)

(

b)

"

c)

!

d)

#

6.

What command allows the player to type something in?

a)

print

b)

input

c)

output

d)

if

7.

What are the correct three terms for when the program needs to make a choice?

a)

if... elif.... else

b)

if... else... or

c)

if... then... else

d)

do... or... if...

8.

It does not matter how far from the left margin you add your code in a Python progam.

a)

True

b)

False

9.

The amount of empty space at the start of a line of programming is known as the...

a)

Indentation

b)

Whitespace

c)

Blank space

d)

Outer space

10.

A small block of code inside the main program. It can be re-used and run at any time.

a)

Mini-program

b)

Subroutine

c)

Micro-program

d)

Subprogram

11.

What command indicates a new subroutine is going to be created?

a)

def

b)

sub

c)

create

d)

new

12.

A subroutine will run as soon as it has been defined.

a)

True

b)

False