Yr 8 - Tracy the Turtle 2 (Iteration)

Yr 8 - Tracy the Turtle 2 (Iteration)

7th Grade

8 Qs

quiz-placeholder

Similar activities

Sequence,Variable,Selection,Iteration

Sequence,Variable,Selection,Iteration

7th Grade

10 Qs

Punctuation and Spacing Rules

Punctuation and Spacing Rules

6th - 8th Grade

10 Qs

Selection Sequence Iteration

Selection Sequence Iteration

7th - 11th Grade

12 Qs

MicroBit Lesson 4 AND 5

MicroBit Lesson 4 AND 5

7th Grade

12 Qs

Python

Python

7th - 8th Grade

12 Qs

Selection Control Structure  Quiz

Selection Control Structure Quiz

6th Grade - University

10 Qs

Code.org: Express Course -> Lesson 1 and 2

Code.org: Express Course -> Lesson 1 and 2

5th - 7th Grade

13 Qs

Scratch Programming

Scratch Programming

1st - 12th Grade

13 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.

For i in range

(5)

:

forward(100)

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