wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Turtle academy (End of worksheet 4)

Total questions: 10

Worksheet time: 7mins

Name
Class
Date
1.

Which command tells the turtle to make a loop (eg. do something over and over a certain number of times)?

a)

over

b)

loop

c)

repeat

d)

do_again

2.

If I want the turtle to draw a circle, moving forward 1 point and then turning 1 degree right, how many times will the step of 'fd 1 rt 1' be repeated to complete a full circle?

(a)  

3.

What calculation will work out the degrees of angle in a triangle with 100 point sides?

a)

360/3

b)

180/3

c)

360*3

d)

360/4

e)

3/360

4.

What will the code be to draw an Octagon? Each edge (line) of the octagon should be 70 points long and the turtle will turn left every time.

(a)  

5.

What calculation will work out the degrees of angle in a hexagon with 100 point sides?

a)

360/8

b)

360*8

c)

360/6

d)

360*6

6.

What will the code be to draw an octagon? Each edge (line) of the octagon should be 70 points long and the turtle will turn left every time.

(a)  

7.

What command is missing from this code to draw a square with 100 point sides?

4 [fd 100 rt 90]

(a)  

8.

Draw nine squares in one column. The length of each edge (line) of each square is 30 points. After drawing each square, the turtle needs to move forward (upwards) to get to the next point where another square is drawn.

To move the turtle without drawing a line, what is missing in the code below?

repeat 9 [repeat 4 [fd 30 rt 90] (a)   ]

9.

Which command will set the font size to 30?

a)

setlabelheight30

b)

setlabel 30

c)

set label height 30

d)

setlabelheight 30

10.

Draw a hexagon with each side 100 points long. Repeat the hexagon 10 times, while rotating 60 degrees right each time after a side has been drawn.

a)

repeat 36 [repeat 6 [ fd 100 rt 60] rt 10]

b)

repeat 10 [repeat 6 [ fd 100 rt 60] rt 36]

c)

repeat 6 [repeat 6 [ fd 100 rt 60] rt 36]

d)

repeat 10 [repeat 8 [ fd 100 rt 60] rt 36]