Exploring Python Turtle Graphics

Exploring Python Turtle Graphics

6th Grade

10 Qs

quiz-placeholder

Similar activities

All quiz

All quiz

3rd Grade - University

10 Qs

Python Turtle - Introduction!

Python Turtle - Introduction!

6th Grade

15 Qs

Turtle Logo Programming

Turtle Logo Programming

1st - 6th Grade

10 Qs

grade 6 _american _pen block_scratch

grade 6 _american _pen block_scratch

6th Grade

10 Qs

Scratch Programming Worksheet

Scratch Programming Worksheet

1st - 12th Grade

13 Qs

Animation techniques - Adobe Animate

Animation techniques - Adobe Animate

6th - 12th Grade

12 Qs

Python L1 Quiz 5: Random Numbers and More Turtle Features

Python L1 Quiz 5: Random Numbers and More Turtle Features

1st - 12th Grade

10 Qs

MS paint

MS paint

1st - 12th Grade

9 Qs

Exploring Python Turtle Graphics

Exploring Python Turtle Graphics

Assessment

Quiz

Computers

6th Grade

Medium

Created by

S Uwadiae

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which Python module do you need to import to use Turtle graphics?

import rabbit

import turtle

import snake

import graphics

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What command moves the turtle forward by 100 pixels?

turtle.move(100)

turtle.forward(100)

turtle.run(100)

turtle.walk(100)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which command will turn the turtle 90 degrees to the right?

turtle.left(90)

turtle.turn(90)

turtle.right(90)

turtle.rotate(90)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you change the turtle’s pen colour to green?

turtle.pen_colour("green")

turtle.colour("green")

turtle.set_colour("green")

turtle.pencolour("green")

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which set of commands will draw a square with sides of 50 pixels?

Repeat 4 times: turtle.forward(50), turtle.right(90)

Repeat 2 times: turtle.forward(50), turtle.right(180)

Repeat 3 times: turtle.forward(50), turtle.right(120)

Repeat 6 times: turtle.forward(50), turtle.right(60)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the command `turtle.penup()` do?

Lifts the turtle off the screen

Lifts the pen so the turtle moves without drawing

Changes the pen colour

Makes the turtle move faster

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which command will fill a shape with blue colour after drawing it?

turtle.colour("blue")

turtle.fill("blue")

turtle.begin_fill(); draw shape; turtle.end_fill()

turtle.start_fill("blue"); draw shape; turtle.stop_fill()

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?