NEW
Font size
WorksheetsUnit 3 Chapter 1
Total questions: 26
Worksheet time: 13mins
In which direction will the sprite move?
plane.x = plane.x + 2
left
right
up
down
In which direction will the sprite move?
plane.x = plane.x - 2
left
right
up
down
In which direction will the sprite move?
bee.y = bee.y - 2
left
right
up
down
In which direction will the sprite move?
bee.y = bee.y + 2
left
right
up
down
What is x value in the following code?
rect(250, 200, 75, 225);
250
200
75
225
What is y value in the following code?
rect(250, 200, 75, 225);
250
200
75
225
What is width of the rectangle in the following code?
rect(250, 200, 75, 225);
250
200
75
225
What is height of the rectangle in the following code?
rect(250, 200, 75, 225);
250
200
75
225
Which sprite property would you change to move the sprite from left to right?
sprite.x
sprite.y
sprite.scale
sprite.rotation
Which sprite property would you change to move the sprite from up and down?
sprite.x
sprite.y
sprite.scale
sprite.rotation
Which sprite property would you change to make the sprite grow in size?
sprite.x
sprite.y
sprite.scale
sprite.rotation
Which sprite property would you change to make the sprite turn in a circle?
sprite.x
sprite.y
sprite.scale
sprite.rotation
