background shapesbackground shapes

Quiz Summary

Turtle Programming Advance

Profile Image

Guest

question markRank: 67
question markPoints: 200
Accuracy 20.0%

Want to learn coding and ace these quizzes?

Find a new quiz

Share this in social media

Quiz result

2

Correct

8

Incorrect

Question Performance

1.

To stop the turtle drawing you need to use which of the following commands?

penup:

pen_up( )

penup( )

penup( ):

2.

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( )

3.

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

4.

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

5.

When you want to hide the turtle pointer on the screen which command should you use?

hide_turtle( )

remove_turtle( )

hideturtle( )

turtle.disappear( )

6.

To make the turtle move forward, which command is used?

turtle.penup()

turtle.forward()

turtle.left()

turtle.backward()

7.

When creating a rectangle with the turtle, what angle is needed when turning?

120

180

45

90

8.

What is the extension on a Python file name?

.py

.xsl

.ppt

.docx

9.

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

10.

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