Python Turtle - Homework

Python Turtle - Homework

12th Grade

10 Qs

quiz-placeholder

Similar activities

Loops: Accumulator Variables

Loops: Accumulator Variables

9th - 12th Grade

10 Qs

Grade 12-Python selection&iteration

Grade 12-Python selection&iteration

11th - 12th Grade

15 Qs

Python массив

Python массив

9th - 12th Grade

10 Qs

Introduction to Python

Introduction to Python

9th - 12th Grade

10 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

Recuperação - Pensamento Computacional - 1ª Série NEM

Recuperação - Pensamento Computacional - 1ª Série NEM

9th - 12th Grade

12 Qs

Python L2- Quiz 1

Python L2- Quiz 1

5th - 12th Grade

7 Qs

Python: списки, кортеж, словник, множина

Python: списки, кортеж, словник, множина

9th - 12th Grade

14 Qs

Python Turtle - Homework

Python Turtle - Homework

Assessment

Quiz

Computers

12th Grade

Medium

Created by

P Upstone

Used 34+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How do you tell python you want to use the turtle library

turtle import

import turtle

from libraries import turtle

from turtle import libraries

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The .turn(x) command instructs the turtle to turn

Clockwise if x is positive

Anti-clockwise if x is positive

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

t = turtle.Turtle()

t.setheading(270)


The turtle in this program will be facing....

Up

Right

Down

Left

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of these commands would successfully create a turtle named Alice

Alice = turtle.turtle()

Alice = Turtle.turtle()

Alice = Turtle.Turtle()

Alice = turtle.Turtle()

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens if you call your python progam "turtle"

your program crashes because you have spelt it wrong

your program crashes because it stops the import turtle line from working

your program crashes because it should have been saved as turtle.turtle

your program runs fine

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

counter = 0

while counter<4:

t.forward(100)

t.turn(90)

counter = counter + 1


What shape will this draw?

Square

Rectangle

Triangle

Rhombus

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

counter = 0

while counter<9:

t.forward(100)

t.turn(40)

counter = counter + 1


How many times will this code repeat itself?

7

8

9

10

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?