Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Python Programming Sequence Class

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

1. In programming sequence, instructions are run in what order?

a)

bottom to top

b)

randomly

c)

in the order they are presented

2.

2. What is turtle programming?

a)

a computer program that draws

b)

a real life animal that draws

c)

a real life animal inside a comouter

3.

3. The python command to bring in turtle programming is?

a)

start turtle

b)

import turtle

c)

create turtle

4.

4. To give turtle its shape, which is the right command?

a)

name.shape("turtle")

b)

name.structure("turtle")

c)

name.shape("turtle animal")

5.

5. To move turtle forward, which is the right command?

a)

name.front(100)

b)

name.moveforward(100)

c)

name.forward(100)

6.

6. To give turtle its color, which is the right command?

a)

name.paint("green")

b)

name.color("green")

c)

name.green("turtle")

7.

7. To make turtle turn right, which is the right command?

a)

name.right(90)

b)

name.left(90)

c)

name.up(90)

8.

8. To move turtle away from the drawing space, which is the right command?

a)

name.away()

b)

name.down()

c)

name.up()

9.

9. To clean the drawing space and start over, which is the right command?

a)

name.clean()

b)

name.write()

c)

name.reset()

10.

10. Looking at the list of commands, which will run first?

ibn.left(90)

ibn.reset()

ibn.forward(100)

a)

ibn.left(90)

b)

ibn.reset()

c)

ibn.forward(100)