The two words that create a conditional statement are...
If and then
A forever loop repeats ___ number of times
infinite, forever
The blue block's purpose is to...
Move the sprite
For the Star Hunter project how did we move the sprite?
With arrow keys
A portrait is a picture of what
Write scratch code for if the sprite touches pink then the sprite will move ten steps
if (touching color (pink)) {
move 10 steps
}
Write scratch code for a sprite turning right 20 degrees 3 times
repeat 3 {
turn 20 degrees
}
To change the size of the sprite...
There is a size box underneath the screen where I can change the size of the sprite
For the Ghost vs. Wand Chase project what was the wand following?
The mouse-pointer
How many sides does a pentagon have
5
Write scratch code for if the key space is pressed then the sprite should change costumes.
if (key space pressed) {
switch costume to ____
}
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
}
To edit your backdrop, I click on...
Which block was used to change colors of the sprite, for the Costume Change project
switch costume to ____
What do caterpillars turn into
butterflies
Write scratch code for if up arrow is pressed the sprite should move up
if (key down arrow pressed) {
change y by 10
}
Write scratch code for the sprite to spinning forever.
forever {
turn 15 degrees
}
I can make my own sprite: true or false
true
For the Never-Ending game, how did we track a score
How many wheels does a bicycle have
2
if (touching edge) {
go to random position
}
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
}
To make a variable I...
Use the orange blocks -> make a variable -> add name
What kind of loop did we use to for the Basketball Game
A repeat loop
What is a baby horse called