Font size
WorksheetsVideo Game Design/Programing 2nd SWT Review
Total questions: 63
Worksheet time: 36mins
In a game when characters are having a conversation, this is called ______________ between the two.
Story or Plot
Dialog
Concept
Cloud
The game background and scenery is called the ________________.
User Interface
Environment
Story or Plot
Cloud
The fictional figures or people that are seen in the game are called ________________ .
Designers
Processors
Gamers
Characters
The Atari 2600 was part of the _____ generation of game consoles.
1st
2nd
3rd
4th
The _______ is considered to be the first console of the first generation of video game consoles.
Magnavox Odyssey
Atari 2600
Telstar
Nintendo Entertainment System
The biggest rivalry of the 3rd generation was between
Nintendo and Sega
Nintendo and Atari
Atari and Sega
Atari and Magnavox
Which 5th generation console began as a joint project between Nintendo and Sony?
Nintendo 64
PlayStation
Saturn
Jaguar
Which 7th generation console found great success with more "casual" gamers due to its ease of use and motion controls?
Wii
PlayStation 3
Xbox 360
Which console generation are we currently in?
7th
8th
9th
10th
This console belongs in the ___ generation of consoles.
6th
7th
8th
9th
What is a bug?
A part of a program that works correctly
A part of a program that does not work correctly
An additional information provided as input to a block
A label for a piece of information used in a program
What is debugging?
Finding and fixing problems in an algorithm or program
A part of a program that works correctly
An additional information provided as input to a block
A label for a piece of information used in a program
What is the outcome of successful debugging?
The program works correctly
The program stops working
The program becomes faster
The program becomes more efficient
What is the purpose of comments in a program?
To create bugs in a program
To find and fix problems in an algorithm or program
To provide additional information as input to a block
To label a piece of information used in a program
What are the four basic parts of the Problem Solving Process?
Define, Prepare, Try, Reflect
Identify, Research, Test, Review
Think, Plan, Act, Evaluate
Problem, Solution, Action, Result
What is Game Lab?
A tool for drawing pictures and designing animations
A programming language for building games
A dance class at Dartmouth College
A computer science club for girls
What programming language is used in Game Lab?
Python
JavaScript
Java
C++
What is the purpose of Game Lab?
To teach dance and coding simultaneously
To create animations and games with code
To provide powerful features for experienced programmers
To develop mobile apps for phones
What are the first two numbers in a shape command used for?
Changing the position of the shape
Changing the size of the shape
Changing the color of the shape
Changing the shape type
How can you move a rectangle down the screen in Game Lab?
By decreasing the 'X' value
By increasing the 'X' value
By decreasing the 'Y' value
By increasing the 'Y' value
What are the two elements that can be colored in a shape?
Stroke and fill
Border and background
Outline and interior
Edge and center
What is the stroke of a shape?
The color inside the shape
The border of the shape
The outline of the shape
The center of the shape
What is the fill of a shape?
The color inside the shape
The border of the shape
The outline of the shape
The center of the shape
What can you use to create interesting and complex drawings in Game Lab?
Only strokes and fills
Only rectangles and circles
Only gray colors
Other commands and tools
Who will get better at bringing their ideas to life in Game Lab?
Only professional artists
Only beginners
Only students from grade 10
Everyone who practices
True or False: You cannot make shapes in Code.org larger or smaller.
True
False
What are the optional parameters for the rect block?
x and y coordinates
width and height
color and opacity
rotation and scale
What are the optional parameters for the ellipse block?
x and y coordinates
width and height
color and opacity
rotation and scale
Which two blocks are shape blocks in code.org. There are two correct answers.
rect
fill
regular polygon
background
What is missing in this code block?
x
y
width
height
What is the width of the rectangle?
30
50
100
150
What will most likely be displayed by this code?
Hint: look at where the drawSprites is located.
pig
rectangle
bear
circle
What is the purpose of this code tile?
Prevent medical emergency.
Stop drawing of text.
Stop drawing of outlines.
Stop all drawing.
What is wrong with this code block?
It should say YELLOW in caps.
It should say "yellow" in quotes.
There is no fill code block in Game Lab.
Yellow is not a color recognized by name.
Which of the following are true about this grid:
the top left is (0, 0)
the bottom right is (400, 400)
the bottom left is (0, -400)
if I put a square at (400, 400) it will show up on the grid
What coordinates would your
squares have to be placed at to
recreate this image?
(0, 0) and (400, 400)
(100, 20) and (400, 400)
(0, 0) and (350, 350)
(0, 400) and (400, 0)
What can you do with the w and h in this block?
Change the width of the rectangle
Change the width of the ellipse
Change the height of the ellipse
Nothing
Which of the following is an example of an ellipse?
What code will allow you to add color to an object?
shade
color
fill
fill in
Which of the following shapes would the rect command create?
The position of an object on a grid is represented by __ and __ coordinates.
x and y
w and h
x and w
h and y
What will be displayed?
Hint: is there a "setAnimation" line of code?
A dog
A cat
A rectangle
Two rectangles
A dog and a cat
Where is (0,0) in the grid?
In the top left corner
In the top right corner
In the bottom left corner
In the middle of the grid
What color is the ellipse?
Gray
Red
Blue
Red with blue border
Blue with red border
What is y value in the following code?
250
200
75
225
Which sprite property would you change to move the sprite from left to right?
sprite.x
sprite.y
sprite.scale
sprite.rotation
Which sprite property would you change to move the sprite from up and down?
sprite.x
sprite.y
sprite.scale
sprite.rotation
Which sprite property would you change to make the sprite grow in size?
sprite.x
sprite.y
sprite.scale
sprite.rotation
Which sprite property would you change to make the sprite turn in a circle?
sprite.x
sprite.y
sprite.scale
sprite.rotation
What color is Mr. Sammons' collar?
Black
Grey
Cyan
Green
The first parameter in the () after an ellipse or rectangle code is:
height
width
x coordinate point
y coordinate point
The second parameter in the () after an ellipse or rectangle code is:
height
width
x coordinate point
y coordinate point
The third parameter in the () after an ellipse or rectangle code is:
height
width
x coordinate point
y coordinate point
The fourth parameter in the () after an ellipse or rectangle code is:
height
width
x coordinate point
y coordinate point
What two pieces of information are needed in the () for random number?
maximum
height
minimum
width
A label for a piece of information used in a program.
Property
Variable
initialize
command
A character on the screen with properties that describe its location, movement, and look.
Variable
Property
Random
Sprite
By chance, not planned or prearranged; irregular
variable
random
property
sprite
True or False: the following is a valid label name
1team
True
False
True or False .The following is a valid label name.
size_of _eye
True
False
True or False. The following is a valid label name.
petalsize
True
False
How can we correct the code above? We are getting the error message (dessert is defined, but it is not called in your program)
Change drink to dessert in the 6th line of code
Change drink to ice cream in the 6th line of code
Change drink to sprite in the 6th in of code
animation
A graphic character on the screen with properties that describe its location, movement, and look.
a series of images that create the illusion of motion by being shown rapidly one after the other
a single image within an animation
A placeholder for a piece of information that can change.
