wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Sequencing Blockly - 2

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

You write this sequence: turn left, move forward, turn right, move forward. What shape will the character make?

a)

A straight line

b)

A curve

c)

A right angle turn

d)

A circle

2.

Which command must come first if you want the character to avoid a wall directly in front?

a)

move forward

b)

turn right

c)

repeat

d)

say hello

3.

What will this code do?
Repeat 2 times:
Move forward
Turn right

a)

The character moves in a U-shape

b)

The character goes back to the starting point

c)

The character turns in a square pattern

d)

The character moves forward, turns right, and repeats this twice

4.

A maze has two forward steps, then a left turn. Which is the correct command sequence?

a)

move forward, turn left, move forward

b)

move forward, move forward, turn left

c)

turn left, move forward, move forward

d)

turn right, move forward, turn left

5.

What will the character do?

a)

Move forward 5 steps and turn left in between

b)

Move forward 3 times and turn left 2 times

c)

Turn left 3 times and move 2 steps

d)

Repeat all steps 5 times

6.

What’s the difference between these two codes?
Code A - Left, Code B - Right

a)

Code A turns twice after one move; Code B moves twice, then turns

b)

Code A is faster

c)

Code B turns more

d)

There is no difference

7.

Which block sequence is most efficient to move in a square?

a)

Use 4 move forward blocks and 4 turn left blocks

b)

Use repeat 4 times: move forward, turn left

c)

Use repeat 2 times: move forward, turn right

d)

Use turn left four times only

8.

What will happen if the repeat block is placed outside the when run block?

a)

The code repeats forever

b)

The code does not run

c)

The code runs twice

d)

The code runs slowly

9.

You accidentally switch move forward and turn left inside a repeat. How will this affect the output?

a)

The program still runs as planned

b)

The character will turn before moving, changing its path

c)

The repeat block fixes the order

d)

It becomes faster

10.

Why is the correct sequencing of blocks important, especially in loops?

a)

The loop will crash if the order is wrong

b)

The loop will make mistakes in colors

c)

The loop repeats the exact order of blocks, so wrong order = wrong results

d)

The loop won’t care about block order