NEW
Font size
WorksheetsCS Discoveries 3rd Nine Weeks Exam (Unit 3 and 4)
Total questions: 29
Worksheet time: 17mins
What is the (x, y) location of the palette?
(0, 0)
(200, 200)
(100, 300)
(300, 100)
error
What is fishBlue.scale=?
var fishGold = createSprite(100, 100);
fishGold.setAnimation("fish");
fishGold.tint='gold';
fishGold.scale = 1.0;
var fishBlue = createSprite(200, 200);
fishBlue.setAnimation("fish");
fishBlue.tint='blue';
fishBlue.scale = ?;
0.5
1.0
2.0
None of the above
mushroom.velocityX = -5;
The mushroom sprite moves ...
left 5 pixels per frame
right 5 pixels per frame
up 5 pixels per frame
down 5 pixels per frame
This code will draw a pink monster. Which of the pictures is drawn correctly?
The Animation Tab is:
Find and fix problems in your algorithm or program.
Where you can export or draw animations for your sprites.
Where you can import or draw animations for your sprites.
Images that you can use to the change the look of sprites.
The randomNumber( ) block can be used to:
Find and fix problems in your algorithm or program.
Generate images.
Hold a place for a piece of information that can change.
Generate random numbers in your programs.
In Game Lab, animations are:
Find and fix problems in your algorithm or program.
Where you can import or draw animations for your sprites.
A placeholder for a piece of information that can change.
Drawings/ images you can use to change the look of sprites.
What is the best definition for a 'sprite'?
To find and fix problems in your algorithm or program.
A graphic character with descriptive properties.
A placeholder for a piece of information that can change.
Attributes that describe an object's characteristics.
What is the best definition for a 'variable'?
To find and fix problems in your algorithm or program.
A graphic character with descriptive properties.
A placeholder for a piece of information that can change.
Attributes that describe an object's characteristics.
What is the best definition for a 'parameter'?
To find and fix problems in your algorithm or program.
Part of a program that does not work correctly.
An extra piece of information that you pass to the function
An algorithm that can be run by a machine.
What is a 'bug' when relating the word to computer science?
An insect with 4 or 8 legs.
Part of a program that does not work correctly.
An extra piece of information that you pass to the function.
An algorithm that can be run by a machine.
What does it mean to 'debug' (verb)?
To find and fix problems in your algorithm or program.
Part of a program that does not work correctly.
An extra piece of information that you pass to the function.
An algorithm that can be run by a machine.
What is the best definition for a 'program'?
To find and fix problems in your algorithm or program.
Part of a program that does not work correctly.
An extra piece of information that you pass to the function.
An algorithm that can be run by a machine.
is a business that provides individuals and organizations access to the Internet free or for a fee
Bandwidth
IP address
domain name
Internet service provider
is a sequence of numbers that uniquely identifies the location of each computer or device connected to the Internet or any other network
Bandwidth
IP address
domain name
Internet service provider
is a text-based name that corresponds to the IP address of a server
Bandwidth
IP address
domain name
Internet service provider
is software that finds websites, webpages, images, videos, news, maps, and other information related to a specific topic on the web
Search Engine
Home Page
Google Docs
Dictionary
An example of parameters are:
var xPosition = 300;
fill("Crimson");
circleSize
rect (x, y, w ,h)
What is another word for a set of steps used to solve a problem with a machine?
Parameter
Algorithm
Variable
Property
A graphic character on the screen with properties that describe it location, movement, and look.
Pin
Button
Sprite
Staple
A single image within an animation.
Frame
Animation
Sprite
Pictures
A single value of either True or False.
Expression
Sprite
Plus or Minus
Boolean
Statements that only run under certain conditions.
True
False
Conditionals
Outcome
The common programming structure that implements “Conditional Statements.”
What-If-Statements
Beginning to end
If-Statements
Conditionals
What happens in this code?
nothing is shown, there are no sprites
the background is white and we can't see anything because the textsize is 0;
the background is white, the counter increases in size as the counter increase.
the background is white, and we see a number that goes up but the textsize stays the same.
