To stop the turtle drawing you need to use which of the following commands?
Quiz Summary
Turtle Programming Advance
Guest
Want to learn coding and ace these quizzes?
Find a new quizShare this in social media
Quiz result
2
Correct
8
Incorrect
Question Performance
To stop the turtle drawing you need to use which of the following commands?
penup:
pen_up( )
penup( )
penup( ):
To move the turtle to a specific position on the drawing canvas you need to use which of the following commands?
set_pos( )
setpos( ):
setpos
setpos( )
When using a command to move the turtle to a specific position on the drawing canvas, the middle of the canvas is represented by which coordinates?
1, 1
100, 100
0, 0
500, 500
How do you tell the Python that you are going to use the turtle library?
import_turtle
turtle import
from turtle import *
from turtle import
When you want to hide the turtle pointer on the screen which command should you use?
hide_turtle( )
remove_turtle( )
hideturtle( )
turtle.disappear( )
To make the turtle move forward, which command is used?
turtle.penup()
turtle.forward()
turtle.left()
turtle.backward()
When creating a rectangle with the turtle, what angle is needed when turning?
120
180
45
90
What is the extension on a Python file name?
.py
.xsl
.ppt
.docx
What does t.forward(300) do?
Moves in the direction it is facing 300 steps
Moves down the screen 300 steps
Moves up the screen 300 steps
None of these
What object do you control in Python turtle?
The pen object which draws your commands
The shape object which draws your commands
The pencil object which draws your commands
The turtle object which draws your commands