placeholder image to represent content

Python 02: Turtle graphics

Quiz by Jonathan Saurine

Our brand new solo games combine with your quiz, on the same screen

Correct quiz answers unlock more play!

New Quizalize solo game modes
20 questions
Show answers
  • Q1
    Which command is used to create a turtle graphic window in Python?
    turtle.Graphic()
    turtle.Canvas()
    turtle.Screen()
    turtle.Window()
    turtle.GraphicalWindow()
    120s
  • Q2

    What is the purpose of the turtle.forward() command in Python's turtle graphics library?

    To fill in a shape drawn by the turtle.
    To move the turtle forward by a specified distance.
    To hide the turtle on the screen.
    To rotate the turtle clockwise.
    To change the turtle's color.
    120s
  • Q3
    Which command is used to make the turtle go to a specific coordinate on the screen in Python's turtle graphics library?
    turtle.navigate(x, y)
    turtle.set(x, y)
    turtle.position(x, y)
    turtle.goto(x, y)
    turtle.move(x, y)
    120s
  • Q4
    Which command is used to draw a circle in Python's turtle graphics library?
    turtle.createCircle(radius)
    turtle.arc(radius)
    turtle.circle(radius)
    turtle.oval(radius)
    turtle.drawCircle(radius)
    120s
  • Q5
    What is the purpose of the `turtle.begin_fill()` command in Python's turtle graphics library?
    To draw a line from the turtle's current position to a specified coordinate.
    To change the turtle's color.
    To start filling a shape with the current fill color.
    To rotate the turtle clockwise.
    To jump the turtle to a specific coordinate on the screen.
    120s
  • Q6
    Which command is used to clear the screen in Python's turtle graphics library?
    turtle.remove()
    turtle.clean()
    turtle.clear()
    turtle.erase()
    turtle.reset()
    120s
  • Q7
    What does the `turtle.penup()` command do in Python's turtle graphics library?
    It increases the turtle's speed.
    It lifts the pen up, so subsequent turtle movements do not leave a trace.
    It fills a shape drawn by the turtle.
    It draws a straight line from the turtle's current position to a specified coordinate.
    It changes the turtle's color.
    120s
  • Q8
    What does the turtle.mainloop() command do in Python's turtle graphics library?
    It clears the screen.
    It hides the turtle on the screen.
    It starts the event loop that listens for turtle graphics events.
    It draws a circle with a specified radius.
    It changes the turtle's color.
    120s
  • Q9
    Which command is used to draw a square in Python's turtle graphics library?
    turtle.rectangle(side_length, side_length)
    turtle.polygon(side_length, 4)
    turtle.drawSquare(side_length)
    turtle.forward(distance)turtle.right(angle)turtle.forward(distance)turtle.right(angle)turtle.forward(distance)turtle.right(angle)turtle.forward(distance)
    turtle.square(side_length)
    120s
  • Q10
    What is the purpose of the turtle.speed() command in Python's turtle graphics library?
    To change the turtle's color.
    To draw a line from the turtle's current position to a specified coordinate.
    To clear the screen.
    To set the speed of the turtle's movements.
    To make the turtle move in a zigzag pattern.
    120s
  • Q11
    Which function in the Python turtle graphics library is used to move the turtle forward?
    forward
    up
    backward
    down
    120s
  • Q12
    What does the Python turtle graphics library use to draw shapes?
    pen
    pencil
    brush
    marker
    120s
  • Q13
    Which Python turtle graphics library function is used to change the turtle's angle?
    right
    back
    forward
    left
    120s
  • Q14
    Which function in the Python turtle graphics library is used to change the turtle's color?
    move
    shape
    size
    color
    120s
  • Q15
    Which Python turtle graphics library function is used to draw a circle?
    square
    rectangle
    circle
    triangle
    120s

Teachers give this quiz to your class