NEW
Font size
WorksheetsGame Lab Shapes 1
Total questions: 16
Worksheet time: 16mins
What does CS stand for?
Computer Science
Computing Studies
Computer Studies
Computing Science
What do computers need to complete tasks?
A mouse, a keyboard and a monitor
Precise instructions
A hard drive
Nothing, computers already know what to do
What does ellipse() do?
Draw an ellipse
Draw a square
Draw a circle
Draw a rectangle
What does rect() do?
Draw a circle
Draw a square
Draw a triangle
Draw a rectangle
What does fill()?
Fill shapes with the stated colour.
Set the colour of the shapes border
Set the colour of the grid
Set the colour of the page
What do the x and y in rect(x,y) represent?
The height and width
The length and depth
The coordinates of the rectangle
The area and volume
What do these instructions do?
fill("red")
rect(175, 175)
fill("blue")
rect(200, 200)
Place a red and blue rectangle on the grid.
Place a red and blue circle on the grid.
Nothing, there is an error
Place two red rectangles on the grid.
Where is (0,0) in the grid?
In the top left corner
In the top right corner
In the bottom left corner
In the middle of the grid
Where is (0,0) in the grid?
In the top left corner
In the top right corner
In the bottom left corner
In the middle of the grid
What does background() do?
Set the colour of the background grid.
Set the colour of all shapes
Set the colour of each shapes border
Set the fill colour for all shapes.
What does randomNumber()?
Chooses a random number between a minimum and maximum value.
Chooses random number that is not any of the two values.
Generates the same number every time
Generates any random number
What does the following code do?
fill("orange");
ellipse(200, 200, 250, 300);
fill("green");
ellipse(200,200,200,150);
Create two circles of different sizes with different colours in different positions
Create two circles of the same colour, size and position.
Create two circles of the same colour with different sizes and in different positions.
I don’t know
What does the following code do?
background("yellow")
fill("purple")
rect(50, 50, 100, 100)
fill("blue")
rect(250,250, 100, 100)
Create an image with a yellow background and two rectangles.
You just see the yellow background
You just see the rectangles
You just see the yellow background and one of the rectangles.
What does ellipse (x,y,w,h) do?
Create an ellipse using x and y coordinates and sets the width and height as well.
Create an ellipse using x and y coordinates and sets the diameter and radius as well.
Create an ellipse using x and y coordinates.
I'm not sure
What does rect(x,y,w,h) do?
Create a rectangle using x and y coordinates and sets the width and height as well.
Create a rectangle using x and y coordinates and sets the diameter and radius as well.
Create a rectangle using x and y coordinates.
I'm not sure
What does the following code do?
fill("purple");
rect(50,50, 100,100);
background("yellow");
fill("blue");
rect(250,250, 100, 100);
Create an image with a yellow background and two rectangles.
You just see the yellow background
You just see the rectangles
You just see the yellow background and one of the rectangles.
