Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

2. Computational thinking

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

Think about the kojo turtle.


What command moves the turtle 50 steps forward?

a)

forward(50)

b)

right(50)

c)

back(50)

2.

Think about the kojo turtle.


What command turns the turtle 20° to the right?

a)

left (20)

b)

right(20)

c)

right(90)

3.

Think about the kojo turtle.


What command turns turtle left 90°?

a)

left(90)

b)

right(90)

c)

back(90)

4.

Think about the kojo turtle.


What is the command will make the turtle pick up the pen?

a)

Penup()

b)

PenDown()

c)

Pick PU

d)

Put PD

5.

Think about the kojo turtle.


What is the command to make the turtle put the pen down?

a)

PenDown()

b)

PenUp()

c)

Pick PU

d)

Put PD

6.

Think about the kojo turtle.


The command clear() is important as it resets the screen before the commands run.

a)

True

b)

False

7.

Think about the kojo turtle.


Using Kojo we are learning to put a sequence of instructions in the correct order.

a)

True

b)

False

8.

Computational thinking is solving a problem in a logical way.

a)

True

b)

False

9.

Which one of these will make the turtle draw a square?

a)

forward(100)

right(90)

forward(100)

right(90)

forward(100)

right(90)

forward(100)

right(90)

b)

forward(100)

left(90)

forward(100)

left(90)

forward(100)

left(90)

forward(100)

left(90)

c)

Both

10.

Think about the kojo turtle.


What is the error in this command: right 90

a)

No brackets around the amount of degrees.

b)

Right needs a capital letter.

c)

It should be left instead of right.