a storage location in the computer's memory which is given a name and used to store a value.
What is a "variable"?
The term used when you join two strings, for example, joining "apple" and "banana"
What is concatenation?
This block puts the pen down before the sprite moves so it can draw
What is the "pen down" button?
This block runs a script when a key the programmer defines is pressed
This block changes the costume for the sprite to the one selected from the drop down list.
What is the "switch costume (x)" block?
This must be created before they are used
What is a "user-defined variable"?
when a program run successfully to the end but gives you the wrong results
What is a "logic error"?
This block is used with the move block inside a forever or repeat block to make the sprite go from side to side of the stage.
What is the "if on edge, bounce" block?
This button sends a message to another sprite. It is used to coordinate the activities of sprites.
What is the "broadcast" button?
This block is used to have the sound selected play. No other block will run until the sound is done playing.
What is the "play sound" block?
When a variable goes for all sprites
What is a "global variable"?
the block used to get the remainder after dividing two numbers.
What is the "mod block"?
When setting the pen size, the way this number goes, the thicker the line is drawn.
What is "Larger"?
This block receives a message from another sprite. It is used to coordinate the activities of other sprites.
What is the "when I receive" block?
This block is used to have the user respond to a question asked for input.
What is the "ask (question) and wait" block?
This is when you give the variable a value before it is used in a script. It is generally set to zero in the beginning of a game.
What is "initializing the variable"?
this block is used to extract a character from a string
What is the "letter of" block?
The move block allows the programmer to move a number of steps in the direction it is facing. If the programmer wants the to move in the opposite direction, it must be set to this.
What is a negative number?
This block runs statements inside an endless loop as long as the program is running.
What is a "forever" loop?
This block holds the response entered by the user in the answer system variable.
what is the blue "answer" block?
When a sprite only uses a specific variable it is called this
What is a "sprite variable"?
The terms we use to find errors in a program and correcting them once we know they exist.
What is "debug" and/or "debugging"?
This button lifts the pen before the sprite moves so it does not draw while the sprite moves.
What is "pen up" button?
This block allows the user to have a sprite wait for a defined amount of seconds.
What is the "wait (x) sec" block?
After the "ask" block is used, this variable (orange) block is often combined with the "answer" block to store the information.
What is the "set (variable)" block?