Yr 8 - Tracy the Turtle 2 (Iteration)

Yr 8 - Tracy the Turtle 2 (Iteration)

7th Grade

8 Qs

quiz-placeholder

Similar activities

Intro to Python Test

Intro to Python Test

3rd - 12th Grade

11 Qs

Data Tran

Data Tran

1st Grade - Professional Development

9 Qs

Express Course Lessons 1-3 Review

Express Course Lessons 1-3 Review

6th - 7th Grade

10 Qs

EV3 Level 2 Quiz

EV3 Level 2 Quiz

7th - 12th Grade

10 Qs

Robotics EV3 -Part 1

Robotics EV3 -Part 1

6th - 12th Grade

9 Qs

Polygon Artist code.org C3L7

Polygon Artist code.org C3L7

6th - 7th Grade

8 Qs

Python L29 Snake Game

Python L29 Snake Game

6th - 8th Grade

10 Qs

Robotics Unit 2

Robotics Unit 2

6th - 8th Grade

12 Qs

Yr 8 - Tracy the Turtle 2 (Iteration)

Yr 8 - Tracy the Turtle 2 (Iteration)

Assessment

Quiz

Computers

7th Grade

Medium

Created by

Matthew Rogers

Used 5+ times

FREE Resource

8 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What is the coding term for a loop?

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What shape would the code snip draw?

A circle

A pentagon

A square

A rectangle

3.

REORDER QUESTION

1 min • 1 pt

Reorder the following bits of code to make a star.

forward(100)

For i in range

(5)

:

right(144)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is required after the number of loops is stated in brackets?

a colon

a semi-colon

a comma

another bracket

5.

DROPDOWN QUESTION

1 min • 1 pt

Writing out the same instructions many times is not very ​ (a)   .

efficient
simple
challenging
successful

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which commands would be needed to remove the lines between the circles:

penup

pendown

draw

stopdraw

pen-up()

pen-down()

penup()

pendown()

7.

CLASSIFICATION QUESTION

3 mins • 1 pt

Which of these images can be done using Iteration (using only a few lines of code):

Groups:

(a) Can be done using Iteration

,

(b) Cannot be done using Iteration

Media Image
Media Image
Media Image
Media Image
Media Image

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What needs to be done to complete the star?

add an s to forward to make it "forwards"

Add another 1 to the count controlling code

Increase the forward length to 110

Add the colon