NEW
Font size
WorksheetsClasswork Quiz Unit 3
Total questions: 27
Worksheet time: 14mins
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 turn in a circle?
sprite.x
sprite.y
sprite.scale
sprite.rotation
Which of the following is not true about functions?
Functions are reusable programming abstractions
Functions can reduce complexity of writing and maintaining programs
Functions cannot make calls to other functions within the same program
Once defined, a function can be called many times from different parts of the program.
Two functions in a single program can have different names but contain identical code.
True
False
