Motion
Control
Operators
Variables
Sensing and More Control
100
Makes a sprite bounce off the edge
What is if on edge bounce?
100
This block begins the whole program
What is When Green Flag Clicked?
100
This operator finds the sum of two numbers
What is Addition?
100
Variables can be made in this scratch category
What is Data?
100
Sensing block to sense if two sprites are in contact
What is touching sprite?
200
Changes the direction of a sprite to a specific direction
What is point in direction?
200
This makes the program pause for a specific amount of time
What is Wait _ Seconds?
200
This operator compares two numbers
What is equals, greater/less than?
200
This block is used to create a standard value at the beginning of a program
What is set variable?
200
Senses if a sprite is in contact with a color
What is touching color?
300
Makes a sprite appear at a specific coordinate
What is go to: x y?
300
This checks a condition and executes specified code if it is true
What is If Statement?
300
This operator chooses an arbitrary number within a range
What is pick random?
300
This is the maximum amount of items a list can hold
What is there is no limit?
300
This sensing appears both in the control and sensing categories
What is when key pressed?
400
Makes a sprite move gradually to a specific coordinate within a specified amount of time
What is glide _ secs to x: y: ?
400
This continuously checks a condition
What is Forever If?
400
This allows two conditions to be checked within one If Statement
What is And/Or?
400
A variable accessible by all sprites
What is a global variable?
400
Can be used to trigger code in a different part of the program (such as in a different sprite or in the background)
What is Broadcasting?
500
Scratch motion and location are based on this coordinate system
What are Cartesian Coordinates
500
This executes code if a condition is FALSE
What is Else?
500
Finds the remainder of the division of 2 numbers
What is modulus (mod)?
500
The placement of a value in a list is called...?
What is an Index?
500
Putting an If within an If is the same as this
What is AND operator?