wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

CSD Unit 3 - Interactive Animations and Games (lessons 3&4)

Total questions: 15

Worksheet time: 8mins

Name
Class
Date
1.

The _ block will plot a square at the x and y coordinates it is given.

a)

ellipse

b)

rect

c)

fill

d)

background

2.

The _ block will plot a circle at the x and y coordinates it is given.

a)

ellipse

b)

rect

c)

fill

d)

background

3.

How are shapes plotted on the screen?

a)

with alphabet letters

b)

with X and Y coordinates

c)

using a touch screen

d)

with numbers

4.

The x value represents...

a)

How far away from left to right of the screen

b)

How far away from the corner of the screen

c)

How far away from the top of the screen

d)

How far away from the bottom of the screen

5.

The y value represents...

a)

How far away from the right of the screen

b)

How far away from the left of the screen

c)

How far away from the corner of the screen

d)

How far away from top to bottom of the screen

6.

What is the origin of a square or rectangle?

a)

The bottom right corner

b)

The bottom left corner

c)

The top right corner

d)

The top left corner

7.

What is the origin of a circle or ellipse?

a)

The bottom left corner

b)

The center

c)

The bottom right corner

d)

The top

8.

In this line of code:

rect(250, 100);

which number is the y value?

a)

rect

b)

250

c)

100

9.

In this line of code: rect(250, 250, 100, 50); what do 100 and 50 represent?

a)

The x and y values

b)

The w and h values

10.

Given rect(x, y, w, h); what are w and h?

a)

width and heavy

b)

width and tallness

c)

width and length

d)

width and height

11.

The line of code: background("red"); will change what red?

a)

Any shapes on the screen

b)

The background

c)

The foreground

d)

Nothing

12.

What line of code will change the color of any shapes coded below it?

a)

color

b)

rect

c)

weight

d)

fill

13.

What will this line of code make?

rect(100, 100, 50, 50)

a)

a rectangle

b)

a square

c)

a circle

d)

a star

14.

What will this line of code make?

rect(100, 100, 50, 200)

a)

a rectangle

b)

a square

c)

a triangle

d)

a circle

15.

The command for coloring the shape comes before drawing the shape

a)

True

b)

False