WorksheetsYear 7 Term 3 Assessment
Total questions: 53
Worksheet time: 27mins
What does t.forward(300) do?
Moves in the direction it is facing 300 steps
Moves down the screen 300 steps
Moves up the screen 300 steps
How do you tell that Python that you are going to use the turtle library?
import turtle
turtle import
from turtle import *
from turtle import
What does turn(90) do?
Turns right 90 degrees
Turns left 90 degrees
Moves forward 90
Does nothing as 'turn' is not a turtle instruction
Square
Triangle
Rectangle
Hexagon
To make the turtle move forward, which command is used?
turtle.penup()
turtle.forward()
turtle.left()
turtle.backward()
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()
Which of these commands would create a turtle named Alice?
Alice = turtle.pen()
Alice = Turtle.pen()
Alice = Turtle.turtle()
Alice = turtle.Turtle()
What does this code do?
hunter.color("yellow")
hunter.begin_fill()
hunter.circle(100)
hunter.end_fill()
Makes a yellow-filled circle
Makes a yellow circle that is not filled in
Makes a black circle that is not filled in
Makes a white (invisible) circle
When creating a rectangle with the turtle, what angle is needed when turning?
120
180
45
90
To move the turtle to a specific position on the drawing canvas you need to use which of the following commands?
set_pos( )
setpos( ):
setpos
setposition( )
What term describes changing the position of text in the spreadsheet?
Alignment
Paragraph
Format
Font
