Python Drawing Lesson 1 and 2 Quiz

Python Drawing Lesson 1 and 2 Quiz

8th Grade

13 Qs

quiz-placeholder

Similar activities

Programming Vocabulary

Programming Vocabulary

6th - 8th Grade

15 Qs

CodeHS Tracy Python

CodeHS Tracy Python

6th - 8th Grade

15 Qs

Предговор - Python Advanced

Предговор - Python Advanced

8th Grade

11 Qs

Code.org Express Quiz

Code.org Express Quiz

8th Grade

15 Qs

Algorithms Continued

Algorithms Continued

8th Grade

15 Qs

Small Basic

Small Basic

7th - 9th Grade

17 Qs

Basics of Coding SC 1

Basics of Coding SC 1

7th - 9th Grade

15 Qs

CS Express

CS Express

6th - 8th Grade

17 Qs

Python Drawing Lesson 1 and 2 Quiz

Python Drawing Lesson 1 and 2 Quiz

Assessment

Quiz

Computers

8th Grade

Medium

Created by

Ian Stuckey

Used 15+ times

FREE Resource

13 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following commands will allow you to draw in Python:

Import drawing

import turtle

Import Turtle()

import turtle()

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following commands will change the background colour of the screen?

wn.bgcolor(“blue”)

wn.bgcolour(“blue”)

wn.bgcolor(blue)

win.bgcolor(“blue”)

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following commands will return the turtle to its starting position and give you a blank screen?

turtle.undo()

turtle.clear()

turtle.reset()

turtle.Turtle()

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Write down the code to make the turtle move forward by 300 and then turn left by 90 degrees

turtle.foward(300)

turtle.left(90)

turtle.forward(300)

turtle.turn(90)

turtle.forward(300)

turtle.left(90)

turtle.forward(90)

turtle.left(300)

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the best name given to the following piece of code:

for i in range(4):

turtle.forward(x)

turtle.right(y)

Repeat

Python code

Turtle

FOR loop

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What shape will this FOR loop draw?

for i in range(6):

turtle.forward(200)

turtle.right(60)

Triangle

Square

Pentagon

Hexagon

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What shape will appear on the screen when this FOR loop runs?

for i in range(6):

turtle.forward(200)

turtle.right(120)

Triangle

Square

Pentagon

Hexagon

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?