Exercise More Features of Scratch
Exercise More Features of Scratch
2. Number the blocks in the correct order to make the character draw a circle.
Correct Order:
1. When Green Flag Clicked (To start the script)
2. Pen Down (To enable drawing on the stage)
3. Repeat (360) (To loop the movement 360 times)
4. Move 1 Step (To move forward slightly)
5. Turn 1 Degree (To slightly turn, creating a circular motion)
This script makes the sprite draw a perfect circle on the stage.
Key Differences:
• "repeat 10" runs the block a fixed number of times (10 in this case).
• "forever" runs the block endlessly until the user stops the script manually.
Key Difference:
• "broadcast message1" is asynchronous, meaning it does not wait for the receiving scripts
to finish.
• "broadcast message1 and wait" is synchronous, meaning it pauses the script until all
actions triggered by the message are completed.