wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

LA7.C7: Turtle Graphics

Total questions: 14

Worksheet time: 7mins

Name
Class
Date
1.

What programming language introduced Turtle Graphics?

a)

Python

b)

Java

c)

Logo

d)

C++

2.

What command is used to make the Turtle visible on the screen?

a)

Turtle.Render()

b)

Turtle.Visible()

c)

Turtle.Display()

d)

Turtle.Show()

3.

How many sides does a hexagon have?

a)

4

b)

7

c)

6

d)

5

4.

Which command is used to move the Turtle forward?

a)

Turtle.Forward()

b)

Turtle.Step()

c)

Turtle.Move()

d)

Turtle.Go()

5.

What does the command "Turtle.TurnRight()" do?

a)

Stops the Turtle

b)

Moves the Turtle forward

c)

Turns the Turtle right

d)

Turns the Turtle left

6.

What is the purpose of the "Turtle.PenUp()" command?

a)

To make the Turtle draw

b)

To stop the Turtle

c)

To move the Turtle without drawing

d)

To change the Turtle's color

7.

What is the Turtle speed in this program?

a)

5

b)

8

c)

9

d)

10

8.

Which command is used to change the Turtle's drawing color?

a)

Turtle.Color()

b)

GraphicsWindow.PenColor()

c)

GraphicsWindow.SetColor()

d)

Turtle.SetColor()

9.

What does the command "Turtle.Turn(angle)" do?

a)

Stops the Turtle

b)

Changes the Turtle's color

c)

Turns the Turtle by a specified angle

d)

Moves the Turtle forward

10.

How can you draw a square using loops?

a)

By using Turtle.Line() command

b)

By using Turtle.Square() command

c)

By using Turtle.DrawSquare() command

d)

By using Turtle.Move() and Turtle.Turn() commands

11.

What is the purpose of the variable "sides" in the polygon drawing program?

a)

To change the Turtle's color

b)

To set the Turtle's speed

c)

To specify the number of sides of the polygon

d)

To define the length of each side

12.

What happens when you set "Turtle.X = 0" and "Turtle.Y = 0"?

a)

The Turtle moves to the top left corner

b)

The Turtle disappears

c)

The Turtle moves to the bottom right corner

d)

The Turtle moves to the center of the screen

13.

Which command allows the Turtle to draw dotted lines?

a)

Turtle.PenUp() and Turtle.PenDown()

b)

Turtle.DrawDotted()

c)

Turtle.Dotted()

d)

Turtle.Line()

14.

What is the result of setting the "sides" variable to 50 in the circle drawing program?

a)

It draws a hexagon

b)

It draws a circle

c)

It draws a triangle

d)

It draws a square