Turtle quiz 1

Turtle quiz 1

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Owen PERRY

Used 2+ times

FREE Resource

Student preview

quiz-placeholder

13 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When you have an error in your code what is the term to summarise finding and fixing that error?
Error checking
Debugging
Syntax finder
Error finder

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To move the turtle to  a specific position on the drawing canvas you need to use which of the following commands?
set_pos( )
setpos( ):
setpos
setpos( )

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the keyword needed to loop code (iterate) in Python?

for

if

input

print

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What shape will this create?

Triangle

Hexagon

Rectangle

Will look like the turtle is climbing stairs

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why comments are important in programming?

Comments are ignored by the compiler while running the code.

Lazy programmers (who do not comment the code properly) forget their own implemented logics and waste much more time solving the issue when they see their code later.

In Python we can write a single line comment by using #.

Comments are helpful to other programmers to understand the code better. They can easily understand the logic behind solving any problem.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Look at this code, what shape will it make?

Square

Triangle

Rectangle

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?