Motion
Loops
Conditionals
Events
General
100

This block allows the sprite to move in the direction it's facing. 

Move 10 Steps. 

100

This loop allows the code inside to run eternally. 

Forever

100

What is a conditional? 

Code is depends on a condition. 

100

This block is usually the first block Scratchers put into the project. 

When green flag pressed.

100

What is a sprite?

It is an individual object with its own costume and code. 

100

Easy block to make the sprite move to a specified location without teleporting.

Glide. 

100

This loop runs only an exact number of times.

Repeat 10

100

What is the block that allows the program to do additional code if a condition is met?

If then block. 

100

This block is used for reactions to key presses.

When key pressed.

100

This is the background of the project. 

Backdrop.

100

Teleport sprite to a specific spot. 

Go to

100

This loop repeats until something happens.

Repeat until.

100

What is the block that allows the program to choose between two different sets of code depending on whether the condition is met?

If else. 

100

What is the issue that happens when you hold down a key when using when key pressed?

Does it once, wait half a second, then start spamming. 

100

What is a costume?

One appearance of the sprite.

150

What determines the position of the sprite?

X and Y. 

150

This block stops the program until something happens. 

Wait until.

150
How do you deal with 3 or 4 choices in a single if else?

Have ifs inside ifs. 

150

How do you get images from Google onto Scratch?

Download the image (either jpg or png) using Save Image As, then use upload. 

200
How can you change where a sprite seems to be, without changing it's location?

Move the costume away from the center. 

200

What is a nested loop?

A loop inside a loop.

200

What kind of programming language is Scratch?

High-level block-based visual programming language (getting any 2 words right is fine).