WorksheetsPython Programming Sequence Class
Total questions: 10
Worksheet time: 5mins
1. In programming sequence, instructions are run in what order?
bottom to top
randomly
in the order they are presented
2. What is turtle programming?
a computer program that draws
a real life animal that draws
a real life animal inside a comouter
3. The python command to bring in turtle programming is?
start turtle
import turtle
create turtle
4. To give turtle its shape, which is the right command?
name.shape("turtle")
name.structure("turtle")
name.shape("turtle animal")
5. To move turtle forward, which is the right command?
name.front(100)
name.moveforward(100)
name.forward(100)
6. To give turtle its color, which is the right command?
name.paint("green")
name.color("green")
name.green("turtle")
7. To make turtle turn right, which is the right command?
name.right(90)
name.left(90)
name.up(90)
8. To move turtle away from the drawing space, which is the right command?
name.away()
name.down()
name.up()
9. To clean the drawing space and start over, which is the right command?
name.clean()
name.write()
name.reset()
10. Looking at the list of commands, which will run first?
ibn.left(90)
ibn.reset()
ibn.forward(100)
ibn.left(90)
ibn.reset()
ibn.forward(100)
