NEW
Font size
WorksheetsLA7.C7: Turtle Graphics
Total questions: 14
Worksheet time: 7mins
What programming language introduced Turtle Graphics?
Python
Java
Logo
C++
What command is used to make the Turtle visible on the screen?
Turtle.Render()
Turtle.Visible()
Turtle.Display()
Turtle.Show()
How many sides does a hexagon have?
4
7
6
5
Which command is used to move the Turtle forward?
Turtle.Forward()
Turtle.Step()
Turtle.Move()
Turtle.Go()
What does the command "Turtle.TurnRight()" do?
Stops the Turtle
Moves the Turtle forward
Turns the Turtle right
Turns the Turtle left
What is the purpose of the "Turtle.PenUp()" command?
To make the Turtle draw
To stop the Turtle
To move the Turtle without drawing
To change the Turtle's color
What is the Turtle speed in this program?
5
8
9
10
Which command is used to change the Turtle's drawing color?
Turtle.Color()
GraphicsWindow.PenColor()
GraphicsWindow.SetColor()
Turtle.SetColor()
What does the command "Turtle.Turn(angle)" do?
Stops the Turtle
Changes the Turtle's color
Turns the Turtle by a specified angle
Moves the Turtle forward
How can you draw a square using loops?
By using Turtle.Line() command
By using Turtle.Square() command
By using Turtle.DrawSquare() command
By using Turtle.Move() and Turtle.Turn() commands
What is the purpose of the variable "sides" in the polygon drawing program?
To change the Turtle's color
To set the Turtle's speed
To specify the number of sides of the polygon
To define the length of each side
What happens when you set "Turtle.X = 0" and "Turtle.Y = 0"?
The Turtle moves to the top left corner
The Turtle disappears
The Turtle moves to the bottom right corner
The Turtle moves to the center of the screen
Which command allows the Turtle to draw dotted lines?
Turtle.PenUp() and Turtle.PenDown()
Turtle.DrawDotted()
Turtle.Dotted()
Turtle.Line()
What is the result of setting the "sides" variable to 50 in the circle drawing program?
It draws a hexagon
It draws a circle
It draws a triangle
It draws a square
