WorksheetsPython Turtle Review
Total questions: 17
Worksheet time: 9mins
What will be the output of the following code?
What would be the output of the following code?
What would be the top left coordinates for the following screen?
200, 200
200, -200
-200, -200
-200, 200
What would be the bottom right coordinates for the following screen?
200, 200
200, -200
-200, -200
-200, 200
What would be the top right coordinates for the following screen?
200, 200
200, -200
-200, -200
-200, 200
What would be the bottom left coordinates for the following screen?
200, 200
200, -200
-200, -200
-200, 200
What is the correct code to make an object named fluffy in the class Turtle.
fluffy.Turtle(class)
fluffy = Turtle( )
fluffy = Turtle(class)
fluffy.Turtle( )
Which of the following circles would be largest?
turtle.circle(30)
turtle.circle(300)
turtle.circle(100)
turtle.circle(500)
Which of the following is the fastest speed?
turtle.speed(0)
turtle.speed(1)
turtle.speed(5)
turtle.speed(10)
Which of the following is the slowest speed?
turtle.speed(0)
turtle.speed(1)
turtle.speed(5)
turtle.speed(10)
Which of the following would make the thickest line?
turtle.pensize(3)
turtle.pensize(1)
turtle.pensize(10)
turtle.pensize(5)
What would be the output of the following code?
Which turtle will go farther?
fluffy
buffy
muffy
How far will go fluffy go?
50
10
5
150
How far will go buffy go?
150
100
5
500
How far will go muffy go?
150
100
5
500
Which of the following codes would be correct to draw a square?
