Python Quiz

Python Quiz

8th Grade

15 Qs

quiz-placeholder

Similar activities

Python Turtle Basics

Python Turtle Basics

7th - 9th Grade

20 Qs

Python Graphics

Python Graphics

6th - 8th Grade

10 Qs

Python Level 1 Quiz #6

Python Level 1 Quiz #6

5th - 12th Grade

12 Qs

Python Review Quiz

Python Review Quiz

7th - 9th Grade

20 Qs

Python Turtle

Python Turtle

KG - Professional Development

11 Qs

Combined Python Turtle 1&2

Combined Python Turtle 1&2

8th Grade

20 Qs

Modules, Packages, and Libraries

Modules, Packages, and Libraries

8th Grade

10 Qs

Exploring Python Turtle Graphics

Exploring Python Turtle Graphics

7th Grade - University

12 Qs

Python Quiz

Python Quiz

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Gary Vear

Used 15+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What line of code is necessary to use drawing functions in Python such as fillcolor, forward, left and right?

from turtle import*

start turtle

begin_turtle

import python

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What Python Turtle function allows you to change the colour of a shape's borders?

fillcolor

pencolor

linecolor

bordercolor

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following functions can be used to create a loop? (check all that apply)

for i in range

if

else

elif

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

A ________ is a container used to store a value that may change over time.

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What would be the output of the following code?

number = "10"

print(number * 2)

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What would the following code draw?

from turtle import*

for i in range(3):

forward(100)

right(360/3)

A triangle pointing up

A triangle pointing to the right

A triangle pointing to the left

A triangle pointing down

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What would the following code output?

from turtle import*

left(90)

pencolor(green)

forward(100)

A green vertical line

A green horizontal line

A green diagonal line

An error message

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?