#1
What is the purpose of the 'penup()' function in Turtle Graphics?
To lift the pen without drawing
ExplanationLifts the pen without drawing, allowing the turtle to move without leaving a trail.
#2
Which Turtle Graphics command is used to draw a circle?
circle()
ExplanationDraws a circle with the specified radius using the 'circle()' command.
#3
What does the 'bgcolor()' function do in Turtle Graphics?
Changes the background color of the window
ExplanationModifies the background color of the Turtle Graphics window using 'bgcolor()'.
#4
In Turtle Graphics, what does the 'setheading()' function do?
Sets the turtle's heading (angle)
ExplanationSpecifies the turtle's heading (angle) using the 'setheading()' function in Turtle Graphics.
#5
Which Turtle Graphics command is used to fill the color in a shape?
fillcolor()
ExplanationFills the shape with the specified color using the 'fillcolor()' command in Turtle Graphics.
#6
What does the 'undo()' function do in Turtle Graphics?
Reverses the last turtle action
ExplanationUndoes the last turtle action, effectively reverting the most recent drawing or movement with the 'undo()' function.
#7
What does the 'clear()' function do in Turtle Graphics?
Clears the entire drawing on the screen
ExplanationErases the entire drawing on the screen, leaving a blank canvas, with the 'clear()' function in Turtle Graphics.
#8
Which command in Turtle Graphics is used to set the width of the turtle's pen?
width()
ExplanationSets the width of the turtle's pen, controlling the thickness of drawn lines, using the 'width()' command in Turtle Graphics.
#9
What is the purpose of the 'st()' function in Turtle Graphics?
Stops the turtle
ExplanationHalts the turtle's movement with the 'st()' function, effectively stopping it.
#10
In Turtle Graphics, what is the purpose of the 'speed()' function?
Sets the drawing speed of the turtle
ExplanationAdjusts the drawing speed of the turtle using the 'speed()' function in Turtle Graphics.
#11
What is the primary use of the 'ht()' function in Turtle Graphics?
Hides the turtle
ExplanationConceals the turtle, making it invisible on the screen, with the 'ht()' function in Turtle Graphics.
#12
How can you draw a square in Turtle Graphics using a loop?
Using the 'for' loop with 'forward()' and 'right()' commands
ExplanationUtilizes a 'for' loop along with 'forward()' and 'right()' commands to draw a square in Turtle Graphics.
#13
What is the purpose of the 'onclick()' function in Turtle Graphics?
Executes a function when the turtle is clicked
ExplanationTriggers the execution of a function when the turtle is clicked, providing interactivity with the 'onclick()' function in Turtle Graphics.
#14
How can you draw a triangle in Turtle Graphics using a loop?
Using the 'for' loop with 'forward()' and 'left()' commands
ExplanationEmploys a 'for' loop along with 'forward()' and 'left()' commands to draw a triangle in Turtle Graphics.