NEW
Font size
WorksheetsUnit 5 Games/Animations
Total questions: 25
Worksheet time: 38mins
The _ block will plot a square at the x and y coordinates it is given.
ellipse
rect
fill
background
The _ block will plot a circle at the x and y coordinates it is given.
ellipse
rect
fill
background
Part of a program that does not work correctly.
Bug
Debugging
Program
Variable
Finding and fixing problems in an algorithm or program.
Bug
Debugging
Variable
Parameter
An algorithm that has been coded into something that can be run by a machine.
Bug
Debugging
Program
Parameter
An extra piece of information passed to a function to customize it for a specific need.
Bug
Program
Parameter
Variable
A placeholder for a piece of information that can change.
Program
Parameter
Variable
Debugging
A graphic character on the screen with properties that describe its location, movement, and look.
Animation
Sprite
Property
Variable
In programming, an expression that evaluates to True or False.
Boolean
Boolean Expression
Boolean Value
In this line of code: rect(250, 250, 100, 50); what do 100 and 50 represent?
The x and y values
The w and h values
What line of code will change the color of any shapes coded below it?
color
rect
weight
fill
Finding and fixing problems in an algorithm or program.
Bug
Variable
Property
Debugging
What is a list of steps that you can follow to finish a task?
Code
Program
Algorithm
The way that sprites' properties are used in Game Lab, by connecting the sprite and property with a dot.
Variable
Property
Dot notation
Debugging
What is the center point of the JavaScript grid on Code.org?
0,0
200,200
400,400
50,50
How many units is each square inside of the program grid worth?
10
100
40
50
Circles are placed using their:
top
bottom
center
none of these
True or False? When working with multiple shapes that are in close proximity to each other, the order of code does not matter.
True
False
Which of the following lines of code is required to produce the following image in the program below?
What will this line of code make?
rect(50, 100, 200, 200)
a rectangle
a square
a triangle
a circle
What will this line of code make?
rect(100, 100, 50, 200)
a rectangle
a square
a triangle
a circle
What will this line of code make?
ellipse(50, 100, 200, 200)
a rectangle
a square
an ellipse
a circle
What will this line of code make?
ellipse(50, 100, 150, 200)
a rectangle
a square
an ellipse
a circle
a named section of a program that performs a specific task. In this sense it is like a type of procedure or routine
step
function
loop
conditional statement
