NEW
Font size
WorksheetsMS Game Design - Unit 2
Total questions: 10
Worksheet time: 5mins
What is Game Play?
The instructions that describe how a game is played
The overall player experience during a game
The rules of the game
The pieces or objects used to play a game
What are components of a game?
The instructions that describe how a game is played
The overall player experience during a game
The rules of the game
The pieces or objects that are used to play a game
What are game mechanics?
The limits or abilities that define what a player can or cannot do during a game
The overall game objectives or challenges in a game
The parts or objects that are used to play a game
The player and enemy characters that are used in some games
What keyword do you need to use to define a variable in JavaScript?
variable
int
let
x
What is printed to the screen in this program?
let hobby = "bird watching";
console.log("I like to go " + hobby);
I like to go bird watching
I like to go hobby
I like to go + hobby
"I like to go " + "bird watching"
What function do you need to call to ask the user of the program to enter text?
readText( )
readInt( )
readLine( )
console.log( )
To ask the user of the program for a number, which function should you use?
readLine( )
readInt( )
readNum( )
Both readInt( ) and readNum( ) can be used to input numbers.
What will the following code print to the screen?
console.log(2 + 2);
4
22
2 + 2
nothing
What symbol do you use to do division in JavaScript?
%
/
/ /
*
Why do we write functions?
To make our code easier to understand by giving a readable name to a group of instructions
To avoid writing a repeated code
To make our code reusable
All of the above
