Coding Vocabulary
What does this code do?
Shapes and Drawing
Block Colors
Movement
100

This is a character on the screen. 

What is a sprite?

100

background(color)

What is change the background color?

100

True or False: You can upload your own image and use it as a sprite. 

What is true?

100

This is the color of the "draw sprites" block.

What is yellow?

100

This is the block that makes sprite shake or move randomly. 

What is "randomNumber"?

200

Sprites have these. Examples are coordinates, rotation, or scale. 

What is a property?

200

ellipse(x, y, w, h)

What is draw a circle?
200

A sprite would appear in this corner if the coordinates were (10,50).

What is top left?

200

This is the color of the "variable" block.

What is purple?

200

Clicking the mouse and hitting the space bar are examples of this. 

What is user input?

300

This is a part of code that does not work correctly. 

What is a bug?

300

This block makes sprites be able to move across the screen. You can change the speed and it uses a + or - block. 

What is counter pattern?

300

Things like the text size and color need to appear ______the actual text block. 

What is before?

300

This is the color of the "if/else" block.

What is blue?
300

This is the name of the block that constantly repeats the code inside. 

What is the draw loop?

400

This is a code block that will only run if certain conditions are true. 

What is a conditional?

400

sprite.x=sprite.x + 2

What is move the sprite to the right?

400

What is the color of the shape coded below:

rect(10, 10, 200, 200)

fill(orange)

What is gray?

400

This is the color of the "sprite.x" block.

What is red?

400

This type of movement uses math blocks to create smooth movement, like sprite.x = sprite.x + 1.

What is the counter pattern?

500

This is an expression that can only be true or false. 

What is a boolean?

500

if (keyDown("space") {

sprite.rotation=sprite.rotation+5}

What is spin the sprite only if the space bar is pressed?

500

When drawing shapes, what does w and h stand for? 

What is width and height? 

500

This is the color of the "draw loops" block.

What is green?

500

This needs to be included INSIDE the draw loop, or else multiple copies of the sprite will appear as it moves and look like the sprite is "bleeding". 

What is the background?

M
e
n
u