Show:
Questions
Responses
Print
Code
animation
Vocabulary
Vocab
Ulary
100
rect (x,y,w,h)
What is code to produce a rectangle or square
100
A graphic character on the screen with properties that describe its location, movement, and look.
What is a sprite
100
Part of a program that does not work correctly.
What is a bug
100
A device that receives information from the computer, allowing it to be displayed -Screen, speakers, printer, 3D printer, etc.
What is output
100
A precise series of instructions that can be used to complete a task
What is an algorithm
200
ellipse(x,y,w,h)
What is code to produce an ellipse or circle
200
a series of images that create the illusion of motion by being shown rapidly one after the other
What is animation
200
An algorithm that has been coded into something that can be run by a machine.
What is a program
200
A device or component that allows information to be given to the computer. -Mouse, keyboard, microphone, scanner, etc.
What is Input
300
code to produce a single random number between a low and high number of your choice.
What is randomNumber("low","high")
300
a single image within an animation
What is a frame
300
Debugging
What is finding and fixing problems in your algorithm or program
300
Attributes that describe an object's characteristics
What is a property
400
code to create a variable
What is var
400
the number of frames shown per second to create the animation. In general, more frames per second means a smoother animation and less choppiness.
What is frame rate
400
A placeholder for a piece of information that can change.
What is a variable
400
create a variable by giving it a name
What is declaring a variable
500
the code to fill your shapes with various colors, must be typed BEFORE you draw your shape.
What is fill()
500
The code used to change the size of a sprite. Entering 2 makes it twice as big. Entering .5 makes it half as big
What is sprite.scale = ()
500
An extra piece of information that you pass to the function to customize it for a specific need.
What is a parameter
500
giving a variable a value that will be used every time the variable is called
What is assigning a variable
500
1. No spaces 2. Can't start with a number 3. Spelling and capitalization must match EXACTLY
What is rules for variable names