wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Mouse Trails in Scratch - Multiple-Choice Test

Total questions: 21

Worksheet time: 11mins

Name
Class
Date
1.

What is the goal of this tutorial?

a)

To make a sprite move randomly

b)

To create a mouse trail in Scratch using clones

c)

To design a maze game in Scratch

d)

To create pixel art using Scratch tools

2.

What is the first step to creating a mouse trail?

a)

Choosing a sprite to follow the mouse pointer

b)

Setting the sprite size to a smaller value

c)

Changing the sprite's X and Y positions

d)

Adding the 'repeat' block

3.

What block is used to make a sprite follow the mouse pointer?

a)

'Go to random position'

b)

'Go to mouse pointer'

c)

'Change X by 10'

d)

'Set ghost effect'

4.

How is the sprite programmed to follow the mouse pointer continuously?

a)

By using a 'repeat' block

b)

By putting 'Go to mouse pointer' inside a forever loop

c)

By duplicating the sprite

d)

By changing the sprite’s costume

5.

What block is used to create duplicates (clones) of the sprite?

a)

'Duplicate this sprite'

b)

'Create clone of myself'

c)

'Repeat'

d)

'Switch costume'

6.

6. How can clones be programmed to behave differently from the original sprite?

a)

By using different scripts for clones

b)

By changing the original sprite's costume

c)

By deleting the original sprite

d)

By renaming the original sprite

7.

How are clones created in Scratch?

a)

By using the 'Create clone of myself' block

b)

By using the 'When I start as a clone' block to add code for clones

c)

By changing the sprite’s size

d)

By setting the sprite’s direction

8.

How can clones disappear after completing their behavior?

a)

By hiding the sprite

b)

By adding the 'Delete this clone' block after their actions

c)

By changing their size to zero

d)

By setting their X position off-screen

9.

Why is it safe to use 'Create clone of myself' inside a forever loop in this project?

a)

Because clones are deleted after their actions, preventing performance issues

b)

Because Scratch automatically limits the number of clones

c)

Because the forever loop pauses after each clone is created

d)

Because the clones are created at random intervals

10.

How can the clones be made to move upward in the mouse trail?

a)

By adding 'Change X by 10' inside a repeat loop

b)

By adding 'Change Y by 10' inside a repeat loop

c)

By using the 'Go to random position' block

d)

By setting the sprite’s costume to a new one

11.

How is the falling effect for the clones achieved?

a)

By setting the X position to zero

b)

By adding 'Change Y by -10' inside a repeat loop

c)

By using 'Go to mouse pointer'

d)

By changing the sprite size

12.

What block is used to create an explosion effect for the mouse trail?

a)

'Point in direction' with 'Pick random' set to 0-360 degrees

b)

'Change X by 10'

c)

'Set ghost effect'

d)

'Create clone of myself'

13.

How can the size of the clones decrease as they move outward?

a)

By adding 'Change size by -8' inside the repeat loop

b)

By setting the sprite size to 10

c)

By using the 'Set size to 50%' block

d)

By creating smaller clones initially

14.

What block is used to make clones fade as they move outward? ('05:19-05:48')

a)

'Change color effect'

b)

'Set ghost effect'

c)

'Change ghost effect by 5'

d)

'Delete this clone'

15.

What happens when the 'Change ghost effect by 5' block is added? ('05:19-05:48')

a)

The clones change color

b)

The clones get more transparent as they move outward

c)

The clones grow larger

d)

The clones stop moving

16.

How can the clones be made to rotate as they move outward?

a)

By adding 'Point in direction'

b)

By using 'Turn' inside the repeat loop

c)

By changing the ghost effect

d)

By duplicating the sprite

17.

What does the tutorial recommend for experimenting with the mouse trail effects? ('Throughout the tutorial')

a)

Using only specific blocks

b)

Trying different blocks inside the repeat loop

c)

Keeping the code simple and unchanging

d)

Using pre-designed costumes only

18.

How can the object in the mouse trail be changed?

a)

By duplicating the sprite

b)

By selecting a new costume in the Costumes tab

c)

By creating a new sprite

19.

What effect does 'Move 10 steps' have when added to the repeat loop? (*04:11–04:49*)

a)

Clones move randomly

b)

Clones move forward in the direction they're pointing

c)

Clones disappear immediately

d)

Clones change size

20.

How does the tutorial suggest modifying the mouse trail effect?

a)

By adding different effects like fading, shrinking, or turning

b)

By using only default settings

c)

By avoiding changes to the repeat loop

d)

By adding only motion blocks

21.

Why is the 'Delete this clone' block important in the project?

a)

To stop clones from overlapping each other

b)

To prevent too many clones from being created and slowing down the program

c)

To allow the main sprite to move freely

d)

To reset the sprite’s position