Who is the little guy with the mushroom head?
Toad
This is what a character in Scratch is called.
Sprite
What does "Hakuna Matata" mean?
No Worries
This is a loop that will repeat code for an infinite amount of time.
FOREVER
What will this print?
Hello World
Who is the main villain in Super Mario Bros?
Bowser
How do you get to (-24, 85) from (0,0)? (What directions (x/y)? how many units? left/right?)
What is 24 left (x direction) and 85 up (y direction)?
Simba's uncle and Mufasa's younger brother.
Scar
This event is used at the start of each project.
When green flag is clicked.
What does this do?
This is an if-else block. It asks the user if they want to go to the city or farm. If the user answered with city, it would switch the backdrop to the city.
Here is an example: https://scratch.mit.edu/projects/824739135
What is this console called?
Nintendo Gamecube
This is a term for a value that can change, depending on conditions or information passed into the program.
What is a variable?
A father fish sets out on a wild journey to find his son who has been captured in the ocean and put into a fish tank
Finding Nemo
What can you use to tell if something is true?
An IF statement.
If I have two statements connected by OR, what needs to happen for the expression to return "TRUE"?
EX: 3 > 2 OR 3 < 5
Only one condition has to be true for it to return "TRUE".
What is this character's name?
Link
What code do you use to return sprite to starting spot? (Meaning when green flag clicked, .....)
GOTO(X,Y)
Emperor Kuzco turns into what animal in The Emperor’s New Groove?
Llama
For an AND expression, what has to happen for it to return TRUE?
EX: 3 > 2 AND 3 > 1
Both conditions have to be TRUE for it to return TRUE.
What does NOT do in an expression?
EX: If (NOT justAte) then goGetDinner
It reverses the value of a condition.
What is this game called?
Ice Climbers
What does the expression "2>3 OR 10<12" evaluate to?
(remember with OR, only one expression has to be true)
TRUE
While discovering the new house she is sent to, a young girl discovers a wardrobe and the magical world that lives inside of it.
Chronicles of Narnia: The Lion, the Witch, and the Wardrobe
What does this do? List all steps
When the green flag is clicked, if the space key is pressed, then move 10 steps.
What does this do? We learned this last week...
Haha!
(it adds two #s) - in Java programming language!
:)