Game Lab Drawing Shapes Quiz

Game Lab Drawing Shapes Quiz

8th Grade

17 Qs

quiz-placeholder

Similar activities

Computer Ed 9 Long Quiz: Database L1-L5

Computer Ed 9 Long Quiz: Database L1-L5

1st - 9th Grade

20 Qs

Code.org Discoveries Conditional Blocks

Code.org Discoveries Conditional Blocks

6th - 9th Grade

20 Qs

Plotting Shapes on Code.Org

Plotting Shapes on Code.Org

5th - 8th Grade

17 Qs

Unit 3 - Interactive Animations and Games

Unit 3 - Interactive Animations and Games

7th - 8th Grade

17 Qs

Unit 3: Animations

Unit 3: Animations

8th Grade

21 Qs

Week 6 Test: ADV CODE

Week 6 Test: ADV CODE

7th - 8th Grade

20 Qs

Discovering Computer Science

Discovering Computer Science

7th - 10th Grade

21 Qs

Unit 3 CS Discoveries

Unit 3 CS Discoveries

7th - 10th Grade

21 Qs

Game Lab Drawing Shapes Quiz

Game Lab Drawing Shapes Quiz

Assessment

Quiz

Computers

8th Grade

Hard

DOK Level 2: Skill/Concept

Standards-aligned

Created by

Alvin Bugz)

FREE Resource

17 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In code.org Game Lab, what function would you use to draw a rectangle?

`drawCircle()`

`drawRect()`

`drawSquare()`

`drawEllipse()`

Answer explanation

In code.org Game Lab, the function `drawRect()` would be used to draw a rectangle, making it the correct choice among the options provided.

Tags

DOK Level 2: Skill/Concept

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What coordinates specify the starting point of a line in Game Lab?

The middle point of the line

The ending point of the line

The highest point of the line

The starting point of the line

Answer explanation

The starting point of the line specifies the coordinates in Game Lab.

Tags

DOK Level 2: Skill/Concept

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you want to draw a circle in Game Lab, which parameter in `ellipse(x, y, width, height)` specifies the horizontal position of the circle's center?

`x`

`y`

`width`

`height`

Answer explanation

The parameter 'x' in the function 'ellipse(x, y, width, height)' specifies the horizontal position of the circle's center, making it the correct choice.

Tags

DOK Level 2: Skill/Concept

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the `width` parameter in the `ellipse()` function control in Game Lab?

The color of the ellipse

The vertical diameter of the ellipse

The horizontal diameter of the ellipse

The position of the ellipse

Answer explanation

The `width` parameter in the `ellipse()` function controls the horizontal diameter of the ellipse in Game Lab.

Tags

DOK Level 2: Skill/Concept

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the Game Lab coordinate system, where is the point (0,0) located?

Top-left corner

Top-right corner

Bottom-left corner

Bottom-right corner

Answer explanation

In the Game Lab coordinate system, the point (0,0) is located in the Top-left corner.

Tags

DOK Level 2: Skill/Concept

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How would you draw a line from (10, 10) to (100, 100) in Game Lab?

`drawLine(10, 10, 100, 100);`

`line(10, 10, 100, 100);`

`drawLine(100, 100, 10, 10);`

`line(100, 100, 10, 10);`

Answer explanation

To draw a line from (10, 10) to (100, 100) in Game Lab, you would use the command `line(10, 10, 100, 100);`. This function draws a line from the starting point (10, 10) to the ending point (100, 100) on the canvas.

Tags

DOK Level 2: Skill/Concept

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What function would you use to set the background color to blue in Game Lab?

`background('blue');`

`setBackground('blue');`

`color('blue');`

`fill('blue');`

Answer explanation

The correct function to set the background color to blue in Game Lab is 'background('blue');'. This function specifically changes the background color to blue.

Tags

DOK Level 2: Skill/Concept

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?