I can do that
I like it
Piece of cake
Give me more
Very simple ,Kidding me
100

I tell the computer to do something again and again. What am I?

Loop

100

Your program isn't working, so you search for mistakes and fix them. What are you doing?

Debugging

100

I am the character that carries out your scripts. What am I?

Sprite

100

Your sprite changes from a superhero outfit to a school uniform. What changed?

Costume

100

IF score = 10, THEN display "You Win!" What programming concept is being used?

Conditional

200

One script moves a sprite while another plays music and another responds to clicks. What concept is this?

Multi-threading

200

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?

200

Every part of the program can see and use me. What kind of variable am I?

Global Variable

200

I am the background where your sprites perform in Snap! What am I?

Stage

200

Think of me as a labeled box that stores information such as score = 20.

Variable

300

I am a collection of scripts working together.

Program

300

I am bigger than a single program—I can contain programs AND data files.

Software

300

Clicking a sprite causes a script to start. What is the click considered?

Event

300

One student controls the computer while another reads, guides, and checks the code.

Pair Programming

300

Everyone discusses an idea until all group members agree. It isn't decided by majority vote.

Consensus

400

I am the area on the right side of Snap! where your sprites are organized.

Sprite Corral

400

[pizza, taco, burger] is an ordered sequence of elements. What is it?

List

400

"Hello World!" is an ordered sequence of characters. What is it?

String

400

"Hello" + "Sarah" → "Hello Sarah". What operation did I perform?

Concatenation

400

You take several pieces of code and put them inside their own block so they're easier to use. What did you do?

Encapsulate

500

I have an oval shape and give you a value when you call me. What type of Snap! block am I?

Reporter

500

 I look like a jigsaw puzzle piece and tell the computer to do something without giving back a value.

Command

500

I report only true or false. What kind of block am I?

Predicate

500

✅❌ I have only two possible values: true or false. What am I?

Boolean Value

500

🔥 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