The list of steps to get the computer to complete a task.
What is an algorithm?
This code block listens for when this green start icon is clicked.
What is "when green flag is clicked" code block?
This code block moves a sprite left and right.
What is "move _ steps" code block?
This code block makes a sprite say something.
What is "say _____" code block?
This code block forces your program to wait for a specified amount of seconds.
What is "wait ___ seconds" code block?
Tell your programme WHEN to do an action.
What is an EVENT?
This code block listens for when the space bar is clicked.
What is "when space key is pressed" code block?
This code block rotates a sprite to the right by 15 degrees.
What is "turn right by 15 degrees" code block?
This code block changes the color effect.
What is "change color effect by ___" code block?
This code block repeats code for the specified amount of time.
What is "repeat ___ " code block?
Tells your computer WHAT action to do.
What is a FUNCTION?
This code block listens for when a character is clicked.
What is "when this sprite is clicked" code block?
This code block moves a sprite to a random position.
What is "go to random position" code block?
This code block shows a sprite.
What is "show" code block?
This code block repeats code forever.
What is "forever" code block?
Repeat steps in your code without having to write it over and over.
What is a LOOP?
This code block listens for when a backdrop switches.
What is "when background switches to __" code block?
This code block allows my character to move up and down.
What is "change y by ___" code block?
This code block changes the costume of a sprite to a specific one.
What is "switch costume to ____" code block?
This code block executes code only if the specified condition is satisfied.
What is "if ___then___" code block?
Holds a bit of information that you can reference and manipulation at different places in your program.
What is a VARIABLE?
This code block listens for when a message is received.
What is "when I receive message" code block?
This code block and x-value allows my character to enter from the left side of the screen.
What is "set x to -240" code block?
This code block changes the backdrop to a specific one.
What is "switch backdrop to ____" code block?
This code block executes code only IF the specified condition is satisfied, otherwise it does something ELSE.