wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

MS Game Design - Unit 2

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

What is Game Play?

a)

The instructions that describe how a game is played

b)

The overall player experience during a game

c)

The rules of the game

d)

The pieces or objects used to play a game

2.

What are components of a game?

a)

The instructions that describe how a game is played

b)

The overall player experience during a game

c)

The rules of the game

d)

The pieces or objects that are used to play a game

3.

What are game mechanics?

a)

The limits or abilities that define what a player can or cannot do during a game

b)

The overall game objectives or challenges in a game

c)

The parts or objects that are used to play a game

d)

The player and enemy characters that are used in some games

4.

What keyword do you need to use to define a variable in JavaScript?

a)

variable

b)

int

c)

let

d)

x

5.

What is printed to the screen in this program?

let hobby = "bird watching";

console.log("I like to go " + hobby);

a)

I like to go bird watching

b)

I like to go hobby

c)

I like to go + hobby

d)

"I like to go " + "bird watching"

6.

What function do you need to call to ask the user of the program to enter text?

a)

readText( )

b)

readInt( )

c)

readLine( )

d)

console.log( )

7.

To ask the user of the program for a number, which function should you use?

a)

readLine( )

b)

readInt( )

c)

readNum( )

d)

Both readInt( ) and readNum( ) can be used to input numbers.

8.

What will the following code print to the screen?

console.log(2 + 2);

a)

4

b)

22

c)

2 + 2

d)

nothing

9.

What symbol do you use to do division in JavaScript?

a)

%

b)

/

c)

/ /

d)

*

10.

Why do we write functions?

a)

To make our code easier to understand by giving a readable name to a group of instructions

b)

To avoid writing a repeated code

c)

To make our code reusable

d)

All of the above