Python 02: Turtle graphics
Quiz by Jonathan Saurine
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
20 questions
Show answers
- Q1Which 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 - Q3Which 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
- Q4Which 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
- Q5What 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
- Q6Which command is used to clear the screen in Python's turtle graphics library?turtle.remove()turtle.clean()turtle.clear()turtle.erase()turtle.reset()120s
- Q7What 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
- Q8What 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
- Q9Which 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
- Q10What 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
- Q11Which function in the Python turtle graphics library is used to move the turtle forward?forwardupbackwarddown120s
- Q12What does the Python turtle graphics library use to draw shapes?penpencilbrushmarker120s
- Q13Which Python turtle graphics library function is used to change the turtle's angle?rightbackforwardleft120s
- Q14Which function in the Python turtle graphics library is used to change the turtle's color?moveshapesizecolor120s
- Q15Which Python turtle graphics library function is used to draw a circle?squarerectanglecircletriangle120s