Log in
Sign up for FREE
arrow_back
Library

Coding Quiz

star
star
star
star
star
Last updated about 8 years ago
5 questions
1
1
1
1
1
Question 1
1.

Question 2
2.

Question 3
3.

Question 4
4.

Question 5
5.

What is a declaration?
Stating something.
Something that happened a long long time ago
July 4th, 1776
Creating something that wasn't there before.
You only need the drawSprites(); command in your code once.
True
False
Which line of code attaches your sprite to its picture?
var sprite = createSprite(200, 200);
sprite.setAnimation("filename");
drawSprites();
draw = function() {}
What is the name of the following spite?

var dino = createSprite(200, 200);
dino.setAnimation("coolDino");
drawSprites();
sprite
dino
coolDino
all of the above
What does a draw function do?
Draws your sprites.
Animates things.
Repeats lines of code 30 times per second.
None of the above