What is the name of programming language we learn?
Thonny
Python
Turtle
What is the name of software to write the code?
Turtle
Python
Thonny
Which one is correct?
import Turtle
import turtle
Import turtle as bill
Which one is correct?
bob=turtle.Turtle
bob=turtle.Turtle()
bob=bob Turtle()
How to make turtle to move forward?
bill.forward()
bill.forward=100
bill.forward(100)
Which one is incorrect?
bill.forward(50)
bill.forward(100)
bill forward(25)
Look at the picture, that is initial position of turtle. Where the turtle is heading?
0
90
180
270
From this position, when turtle position is rotated 90 degrees to the left which position is correct?
The turtle is pointing up
The turtle is pointing left
The turtle is pointing down
From that position, when turtle is rotated 180 to the right, where the turtle will be heading?
Turtle is heading right
Turtle is heading down
Turtle is heading left
From that position, when rotated 90 degrees the left, where the turtle will be heading?
To the right
To the left
Going up
bill the turtle is requested to draw a square with each side 100 steps long. choose the correct instruction so that bill will draw exactly as exampled above.
bill is requested to draw a circle with radius 150. Please continue the code to instruct bill to draw exactly as requested import turtle bill=turtle.Turtle() ...
ron the turtle can change its size and speed. Which one is correct?
import turtle ron=turtle.Turtle() ron shapesize(5) ron speed(1000)