wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

G6-Mid term practice-Animation-2025/26

Total questions: 20

Worksheet time: 10mins

Name
Class
Date
1.

Which one is correct?

a)

StrokeWeight(16);

b)

strokeWeight(16);

c)

StrokeWeight("pink");

d)

strokeWeight("pink");

2.

Which one is correct?

a)

Stroke("Pink");

b)

stroke("YELLOW");

c)

stroke("pink");

d)

Stroke(“Pink”)

3.

Which one is correct?

a)

stroke(‘yellow’);

b)

strokeweight(16);

c)

strokeWeight(16);

d)

stroke(16);

4.

Which one is correct?

a)

line(0,0);

b)

rect(100,20,30,);

c)

point(100,20);

d)

ellipse(100,"30");

5.

Which groups of codes can run out this image?

a)

background("yellow");

fill("blue");

rect(100,200,100,100);

b)

fill("blue");

rect(100,200,100,100);

background("yellow");

c)

background("blue");

fill("yellow");

rect(100,200,100,100);

d)

fill("yellow");

rect(100,200,100,100);

background("blue");

6.

Which is correct?

a)

noStroke();

b)

Nofill();

c)

noFill(6);

d)

nostroke();

7.

How can I make this?

a)

background("green");

strokeWeight(10);

stroke("black");

fill("orange");

arc(50,100,100,100,0,300);

point(41,72);

b)

strokeWeight(10);

stroke("black");

fill("orange");

arc(50,100,100,100,0,300);

point(41,72);

background("green");

c)

background("green");

strokeWeight(10);

stroke("black");

fill("orange");

arc(50,100,100,100);

point(41,72);

d)

background("green");

stroke("black");

fill("orange");

arc(50,100,100,100,0,300);

strokeWeight(10);

point(41,72);

8.

Alice wrote a code: rect(100,200);

Which shows correct?

a)

b)

c)

d)
9.

Bob wrote the code:

rect(100,200);

fill("green");

Which description is correct?

a)

This is a blue square

b)

This is a grey square

c)

This is a green square

d)

This is a green circle

10.

Cindy wrote the codes:

rect(200,150);

fill("yellow");

rect(350,300,50,100);

Which following image is correct?

a)
b)
c)
d)
11.

Which followed statement is correct.

a)

varCircle=10;

b)

Var Circle=randomNumber(100,9);

c)

var Circle of center=10;

d)

var CircleOfCenter=randomNumber(0,199);

e)

var 111=circle;

12.

Which one is correct.

a)

var ColourOfShape="yellow";

fill(ColourOfShape);

var HeightOfShape=randomNumber(0,99);

rect(100,HeightOfShape);

b)

rect(100,HeightOfShape);

var HeightOfShape=170;

var ColourOfShape="yellow";

fill(ColourOfShape);

c)

fill(ColourOfShape);

rect(100,HeightOfShape);

var HeightOfShape=170;

var ColourOfShape="yellow";

d)

fill(ColourOfShape);

var HeightOfShape=170;

var ColourOfShape="yellow";

fill(ColourOfShape);

rect(100,HeightOfShape);

13.

Which group of codes has problem?

a)

var ColourOfShape="red";

var Shapee=300;

fill("ColourOfShape");

rect(Shapee,Shapee);

b)

var ColourOfShape="red";

var Shapee=300;

fill(ColourOfShape);

rect(Shapee,Shapee);

c)

var ColourOfShape="red";

fill(ColourOfShape);

var Shapee=300;

rect(Shapee,Shapee);

14.

Which codes have problems?

a)

Line 1, 2, 10, 11

b)

Line 1,2,10,9,13

c)

Line 1,2,10,9,11

d)

Line 1,2,9,10

15.

Which one is correct.

a)

var BestColour="navy";

fill(BestColour);

b)

var BestColour=navy;

fill("BestColour");

c)

var BestColour="navy";

fill(bestcolour);

d)

var BestColour=navy;

fill(BestColour);

16.

Which statement is correct.

a)

RandomNumber() is equal to a number

b)

RandomNumber() is equal to a code

c)

Stroke() is a shape code

d)

Shape() is a colour code

17.

Which one is correct

a)

rect(randomNumber(100,200),100,200);

b)

rect(randomnumber(100,200),100,200);

c)

rect(randomNumber(200,100),100,200);

d)

rect(randomnumber(200,100),100,200);

18.

Which statement is not correct?

a)

shape(100,200,100,300,400,300);

b)

regularPolygon(100,100,4,200);

c)

var randomNumber(100,200);

d)

var Size=randomNumber(0,200);

rect(100,100,Size,Size);

19.

Which one is wrong for randomNumber()?

a)

regularPolygon(100,100,randomNumber(3,10),100);

b)

point(randomNumber(0,100),randomNumber(0,20));

c)

background(randomNumber(255,0));

d)

strokeWeight(randomNumber(10,20));

20.

Which code can run out the most sides shape?

a)

shape(0,0,200,200,400,400);

b)

rect(100,100,200,30);

c)

regularPolygon(0,0,5,20);

d)

regularPolygon(9,9,9,9);