NEW
Font size
WorksheetsGrade 8
Total questions: 17
Worksheet time: 9mins
To make the turtle move forward, which command is used?
turtle.penup()
turtle.forward()
turtle.left()
turtle.backward()
When creating a rectangle with the turtle, what angle is needed when turning?
120
180
45
90
In order to move the turtle 120 forward without drawing on the screen, which order is correct?
turtle.forward(120)
turtle.penup()
turtle.pendown()
turtle.pendown()
turtle.forward(120)
turtle.penup()
turtle.penup()
turtle.forward(120)
turtle.pendown()
To fill a shape with the colour red, which command is correct?
turtle.fillcolor('Red')
turtle.fillcolour('Red')
turtle.fillcolor("Red")
turtle.fillcolour("Red")
Which of these commands would successfully create a turtle named Alice
Alice = turtle.pen()
Alice = Turtle.pen()
Alice = Turtle.Pen()
Alice = turtle.Pen()
How do you tell python you want to use the turtle library
turtle import
import turtle
from libraries import turtle
from turtle import libraries
Look at this code, how many times will it loop?
50
90
0
4
To stop the turtle drawing you need to use which of the following commands?
penup:
pen_up
penup()
penup():
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, how should it be written?
There is no error
screen=turtle.screen()
screen=turtle.Screen()
screen=turtle.screen("blue")
for number in range(6):
print(number)
This loop can only be used when the programmer knows the number of times a code is to be repeated
while
for
do while
repeat until
What will this code do?
Print Numbers 1-11
Print Numbers 1-10
Print Numbers 2-10
Print Error
What will be the output of this code?
1,2,3,4,5,6,7,8,9,10,11,12
0,2,4,6,8,10
2,4,6,8,10,12
2,4,6,8,10
Which of these will allow me to count from 0-20 in steps of 5?
for x in range(0,20):
print(x)
while x = (0,20,5):
print(x)
for x in range(0,21,5):
print(x)
for x in range(0,21,5):
print(y)
