No student devices needed. Know more
15 questions
Who is credited with devising Python turtle graphics?
Seymour Papert
Steve Jobs
Ben Fry
Casey Rhys
What settings can be applied to Python turtle graphics? Tick all those that apply
Position
Colour
Orientation
Sound
What attributes can you set to the turtle pen? Tick all those that apply
On / off
Colour
Width
Erase
There is an error on this piece of code, what is the correct statement?
screen.bgcolor("lightblue")
screen.bgcolor="lightblue")
screen.bgcolour("lightblue")
screen.bgcolor=lightblue()
What is wrong with this piece of code
Must use the American spelling of colour - "color"
Remove the prefix "screen." on Line 3
Don't write the name of the colour in quote marks
Don't add a capital letter to "Screen"
There is an error on this piece of code, what is the correct statement?
import turtle
import Turtle
import.Turtle
turtle import
There is an error on this piece of code, what is the correct statement?
turtle.forward(150)
turtle.forward()
turtle.moveforward()
turtle.move.forward(150)
There is an error on this piece of code, what is wrong?
Nothing
No start_fill() set
No colour set in the end fill e.g. end_fill("blue")
No colour set in the start fill e.g. start_fill("blue")
There is an error on this piece of code, what is wrong?
Nothing
No full stop needed in the pen.down statement e.g. turtle.pendown()
No brackets needed in the pen.down statement e.g. turtle.pen.down
No turtle prefix needed in the pen.down statement e.g. pen.down()
There is an error on this piece of code, how should it be written?
There is no error
screen=turtle.screen()
screen=turtle.Screen()
screen=turtle.screen("blue")
There is an error on this piece of code, how should it be written?
There is no error
screen=turtle.screen()
screen=turtle.Screen()
screen=turtle.screen("blue")
There is an error on this piece of code, how should it be written?
There is no error
turtle.right(90)
turn.right(90)
right(90)
There is an error on this piece of code, how should it be written?
There is no error
turtle.right(90)
turtle.drawcircle(10)
import.turtle
There is an error on this piece of code, how should it be written?
There is no error
turtle.right(90)
turtle.drawcircle(10)
import.turtle
What is the best method of fixing errors in your code?
Running and testing the code
Asking your friends
Reading it through again
All of the above
Explore all questions with a free account