wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

G6-L7&8&9

Total questions: 15

Worksheet time: 8mins

Name
Class
Date
1.

Which sentence is the correct one for create sprite?

a)

var shape= ellipse(200,200);

b)

var forest= ellipse(200,200);

c)

var createSprite=ellipse(200,200);

d)

var shape=createSprite(200,200);

2.

The animation is showed as the image.

The codes are:

var giraffe = createSprite(200, 200);

giraffe_tall.setAnimation("giraffe_tall");

drawSprites();

What is the problem of these codes?

a)

It should be:

Sprite's name.setAnimation("Animation's name");

b)

It should be:

Sprite's name.setAnimation("Sprite's name");

c)

It should be:

Animation's name.setAnimation("Animation's name");

d)

It should be:

Animation's name.setAnimation("Sprite's name");

3.

Which group of code is correct?

a)

var giraffe = createSprite(200, 200);

giraffe_tall.setAnimation("giraffe_tall");

drawSprites();

b)

var giraffe = createSprite(200, 200);

giraffe.setAnimation("giraffe_tall");

drawSprites();

c)

var giraffe = createSprite(200, 200);

giraffe.setAnimation("giraffe_tall");

drawSprite();

d)

var giraffe = createSprite(200, 200);

giraffe_tall.setAnimation("giraffe_tall");

drawSprite();

4.

This is the animation. Which followed code is for resize this giraffe?

a)

var giraffe = createSprite(200, 200);

giraffe.setAnimation("giraffe_tall");

giraffe.scale=0.5;

drawSprites();

b)

var giraffe = createSprite(200, 200);

giraffe.setAnimation("giraffe_tall");

giraffe_tall.scale=0.5;

drawSprites();

c)

var giraffe = createSprite(200, 200);

giraffe.setAnimation("giraffe_tall");

drawSprites();

giraffe.scale=0.5;

d)

var giraffe = createSprite(200, 200);

giraffe.setAnimation("giraffe_tall");

drawSprites();

giraffe_tall.scale=0.5;

5.

Which code is for rotating sprites?

a)

sprite.x=180;

b)

sprite.rotation=180;

c)

sprite.scale=180;

d)

sprite.rotate=180;

6.

Which code is for enlarging the animation

a)

sprite.scale=6;

b)

sprite.scale=0.6;

c)

sprite.rotation=600;

d)

sprite.enlarge=6;

7.

Which group of codes can make biggest sprite?

a)

var forest=createSprite(100,100);

forest.setAnimation("forest");

forest.scale=8;

drawSprites();

b)

var forest=createSprite(100,100);

forest.setAnimation("forest");

forest.scale=0.8;

forest.height=0.8;

drawSprites();

c)

var forest=createSprite(100,100);

forest.setAnimation("forest");

drawSprites();

forest.scale=800;

d)

var forest=createSprite(100,100);

forest.setAnimation("forest");

drawSprites();

forest.scale=800;

forest.height=0.8;

8.

Where is the center of the sprite?

var forest=createSprite(200,200);

forest.x=100;

a)

(200,200)

b)

(100,200)

c)

(200,100)

d)

(100,100)

9.

var palette = createSprite();

palette.setAnimation("paint_palette");

palette.x = 100;

palette.y = 300;

drawSprites();

What is the image of result?

a)

b)

c)

d)

10.

What is the result of these codes?

var bear=createSprite(200,200);

drawSprites();

a)

b)

c)

d)

11.

Which one can make the sprite smaller? (Sprite's name: sprite)

a)

sprite.scale=2;

b)

sprite.scale=0.2;

c)

sprite.shrink=0.2;

d)

sprite.shrink=2;

12.

Which code CANNOT make the sprite rotate?

a)

sprite.scale=-1;

b)

sprite.scale=1;

c)

sprite.rotation=180;

d)

sprite.rotation=-180;

13.

Which is NOT correct?

a)

sprite.scale=-10;

b)

sprite.rotation=199;

c)

sprite.alpa=100;

d)

sprite.tint=90;

14.

Which CANNOT change anything from the original result?

a)

sprite.tint="red";

b)

sprite.tint=90;

c)

sprite.alpha=0.5;

d)

sprite.alpha=10;

15.

Which colour is the darkest?

a)

sprite.alpha=0;

b)

sprite.alpha=1;

c)

sprite.tint=1;

d)

sprite.tint=100;