I tell the computer to do something again and again. What am I?
Loop
Your program isn't working, so you search for mistakes and fix them. What are you doing?
Debugging
I am the character that carries out your scripts. What am I?
Sprite
Your sprite changes from a superhero outfit to a school uniform. What changed?
Costume
IF score = 10, THEN display "You Win!" What programming concept is being used?
Conditional
One script moves a sprite while another plays music and another responds to clicks. What concept is this?
Multi-threading
I can only be used inside the function where I was created. What am I?
I can only be used inside the function where I was created. What am I?
Every part of the program can see and use me. What kind of variable am I?
Global Variable
I am the background where your sprites perform in Snap! What am I?
Stage
Think of me as a labeled box that stores information such as score = 20.
Variable
I am a collection of scripts working together.
Program
I am bigger than a single program—I can contain programs AND data files.
Software
Clicking a sprite causes a script to start. What is the click considered?
Event
One student controls the computer while another reads, guides, and checks the code.
Pair Programming
Everyone discusses an idea until all group members agree. It isn't decided by majority vote.
Consensus
I am the area on the right side of Snap! where your sprites are organized.
Sprite Corral
[pizza, taco, burger] is an ordered sequence of elements. What is it?
List
"Hello World!" is an ordered sequence of characters. What is it?
String
"Hello" + "Sarah" → "Hello Sarah". What operation did I perform?
Concatenation
You take several pieces of code and put them inside their own block so they're easier to use. What did you do?
Encapsulate
I have an oval shape and give you a value when you call me. What type of Snap! block am I?
Reporter
I look like a jigsaw puzzle piece and tell the computer to do something without giving back a value.
Command
I report only true or false. What kind of block am I?
Predicate
✅❌ I have only two possible values: true or false. What am I?
Boolean Value
🔥 FINAL BOSS: A sprite is clicked, checks whether score > 10, and then repeats a dance five times. Name three vocabulary concepts being used.
Event + Conditional + Loop