wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

2024-G6- Code.org L3

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

Which one is correct?

a)

rect(0,0)

b)

Rect(0,0);

c)

Rect(0,0,100,100,100);

d)

rect(0,0,100,200);

2.

Which one is a rectangular?

a)

rect(0,0,100,100);

b)

rect(100,100,200,100);

c)

rect(100,200,100,100);

d)

rect(0,0,300);

3.

Which one is a circle?

a)

ellipse(100,100,100);

b)

ellipse(100,100,200,400);

c)

ellipse(100,200,400,200);

d)

rect(100,100,100);

4.

Which one can make a blue square?

a)

rect(100,100);

fill("blue");

b)

Fill(blue);

rect(100,100);

c)

rect(100,100,200,400);

fill(blue);

d)

fill(rgb(0,0,200));

rect(100,100,100);

5.

Which one makes the shapes into different colour?

a)

fill("pink");

fill("blue");

rect(100,100,200);

ellipse(100,100);

b)

//fill("pink");

fill("blue");

rect(100,100,200);

ellipse(100,100);

c)

fill("pink");

//fill("blue");

rect(100,100,200);

ellipse(100,100);

d)

fill("pink");

rect(100,100,200);

fill("blue");

ellipse(100,100);

6.

Which one shows the different result comparing to others?

a)

b)

c)

d)

7.

Which code should be debug?

a)

fill("blue");

rect(0,0);

b)

rect(0,0);

fill("blue");

c)

Fill("rgb(100,100,200)");

ellipse(1.25,200,)

d)

ellipse(100,100);

fill(rgb(100,100,200));

8.

Which one can be run as a RED CIRCLE most likely?

a)

ellipse(100,100);

fill("red");

b)

fill(red);

ellipse(100,100);

c)

fill(rgb(200,0,1));

ellipse(100,100);

d)

fill(rgb(10,20,200));

ellipse(100,100);

9.

Which of the following codes can display the image on the left?

a)

b)

c)

d)

10.

How many lines have BUG?

a)

3

b)

4

c)

5

d)

6