NEW
Font size
WorksheetsChapter 4_Programming_Frog maze
Total questions: 10
Worksheet time: 3mins
A ______ stores several program commands.
sensing
module
motion
control
A _____ is a short program that controls a certain sprite.
sensing
program
script
control
The ___ coordinate sets how far up or down the screen a point is.
sprite
x
script
y
The ___ coordinate sets how far right or left the screen a point is.
sprite
x
script
y
A ______ loop is a loop controlled by a logical test.
conditional
repeat
repeat until
if then
Find in the script the conditional loop.
forever
go to x: -237, y: -10
set rotation style left-right
repeat until touching frog
When up arrow key, what coordinate and value are correct?
change x by -10
change y by -10
change y by 10
change x by 10
When left arrow key, what coordinate and value are correct?
change x by -10
change y by -10
change y by 10
change x by 10
When down arrow key, what coordinate and value are correct?
change x by -10
change y by -10
change y by 10
change x by 10
When right arrow key, what coordinate and value are correct?
change x by -10
change y by -10
change y by 10
change x by 10
