wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Untitled Quiz

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

Two sprites both start when the green flag is clicked and immediately say “Hello” for 2 seconds. To make sprite B speak after sprite A finishes, what code should be added to sprite B?

a)

Say “Hello” for 2 seconds then wait 2 seconds

b)

Wait 2 seconds then say “Hello” for 2 seconds

c)

Say “Hello” for 2 seconds twice

d)

Change background before speaking

2.

A sprite walks forward using repeat 10 times and move 10 steps. The movement looks too fast. What is the best way to fix it?

a)

Reduce the repeat count

b)

Change move 10 steps to move 1 step

c)

Add wait 0.1 seconds inside the repeat

d)

Add wait 1 second after everything finishes

3.

To make a sprite look like it is really walking (not sliding), while it moves it should also use which block?

a)

Say

b)

Change background

c)

Next costume

d)

Wait 2 seconds

4.

Placing the next costume block inside the repeat loop is intended to:

a)

Change the costume once

b)

Make the sprite stop moving

c)

Change the costume many times in sync with movement

d)

Make the sprite talk longer

5.

If a wait 0.1 seconds block is placed outside the repeat loop, what happens?

a)

The movement becomes smoother

b)

The sprite does not move

c)

The sprite still moves quickly and then pauses at the end

d)

The costume does not change

6.

Sprite A speaks first, then sprite B should walk. To keep the order from getting messy, what does sprite B need before it moves?

a)

A repeat block

b)

A next costume block

c)

A wait block before moving

d)

A change background block

7.

Consider the code: repeat 10 times → next costume → wait 0.1 seconds. From this code, which action does not happen?

a)

The costume changes many times

b)

The changes appear gradual

c)

The sprite changes position

d)

The animation looks lively

8.

If two sprites speak at the same time when they should take turns, what is the likely mistake?

a)

Not using repeat

b)

Not using wait

c)

Not using next costume

d)

Not changing the background

9.

A sprite moves forward but looks stiff as if sliding. What is the most likely mistake?

a)

The wait time is too long

b)

Not using next costume

c)

Not using the green flag

d)

Not using say

10.

Which block order is best to make a sprite walk neatly and not too fast?

a)

Move 10 steps then wait 1 second

b)

Repeat then say

c)

Repeat → move → next costume → wait 0.1 seconds

d)

Next costume then wait 2 seconds