Conditionals
Loops
Scratch Savvy
Project Based
Fun!
100

The two words that create a conditional statement are...

If and then

100

A forever loop repeats ___ number of times

infinite, forever

100

The blue block's purpose is to...

Move the sprite

100

For the Star Hunter project how did we move the sprite?

With arrow keys

100

A portrait is a picture of what

A person
200

Write scratch code for if the sprite touches pink then the sprite will move ten steps

if (touching color (pink)) {

move 10 steps

}

200

Write scratch code for a sprite turning right 20 degrees times

repeat 3 {

turn 20 degrees 

}

200

To change the size of the sprite...

There is a size box underneath the screen where I can change the size of the sprite

200

For the Ghost vs. Wand Chase project what was the wand following?

The mouse-pointer

200

How many sides does a pentagon have

5

300

Write scratch code for if the key space is pressed then the sprite should change costumes.

if (key space pressed) {

switch costume to ____

}

300

Write scratch code for a sprite that repeats these actions 5 times:

move 10 steps

turn 15 degrees to right

change y by 1

repeat 5 {

move 10 steps

turn 15 degrees 

change y by 1

}

300

To edit your backdrop, I click on...

Backdrops -> paintbrush
300

Which block was used to change colors of the sprite, for the Costume Change project

switch costume to ____

300

What do caterpillars turn into

butterflies

400

Write scratch code for if up arrow is pressed the sprite should move up

if (key down arrow pressed) {

change y by 10

}

400

Write scratch code for the sprite to spinning forever.

forever {

turn 15 degrees 

}

400

I can make my own sprite: true or false

true

400

For the Never-Ending game, how did we track a score

By using a variable called score
400

How many wheels does a bicycle have

2

500
Write scratch code for if the sprite touches the edge of the screen, then the sprite should go to a random position. 

if (touching edge) {

go to random position 

}

500

Write scratch code that the sprite should go to random positions repeatedly, until it touches the edge of the screen.

repeat until (touching edge) {

go to random position 

}

500

To make a variable I...

Use the orange blocks -> make a variable -> add name

500

What kind of loop did we use to for the Basketball Game

A repeat loop

500

What is a baby horse called

A foal