Turtle graphics and variables

Turtle graphics and variables

4th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

2. Computational thinking

2. Computational thinking

5th Grade

10 Qs

Python Turtle

Python Turtle

5th - 12th Grade

10 Qs

Команды чертежника 6 класс

Команды чертежника 6 класс

KG - University

10 Qs

Kiểm tra tin học 5 - Lập trình với Logo

Kiểm tra tin học 5 - Lập trình với Logo

6th Grade

10 Qs

1.30 Turtle绘图测试1

1.30 Turtle绘图测试1

5th Grade

10 Qs

Черепашка Процедуры

Черепашка Процедуры

5th - 6th Grade

10 Qs

Turtle Academy (Lessons 1 & 2)

Turtle Academy (Lessons 1 & 2)

6th - 8th Grade

10 Qs

Turtle academy (Lessons 6 and 7)

Turtle academy (Lessons 6 and 7)

6th - 8th Grade

10 Qs

Turtle graphics and variables

Turtle graphics and variables

Assessment

Quiz

Computers

4th - 12th Grade

Medium

Created by

Whizara Teacher

Used 6+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

The command which helps us to reset the pen (turtle):

turtle.reset

turtle.penreset

turtle.penreset()

turtle.reset()

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

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

turtle.penup()

turtle.forward()

turtle.left()

turtle.backward()

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

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

90

45

120

180

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

In order to move the turtle 120 forward without drawing on the screen, which order is correct?

turtle.forward(120)

turtle.penup()

turtle.pendown()

turtle.pendown()

turtle.forward(120)

turtle.penup()

turtle.penup()

turtle.forward(120)

turtle.pendown()

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

 What does turn(90) do?

Turns right 90 degrees

Turns left 90 degrees

Moves forward 90

Does nothing as 'turn' is not a turtle instruction