adams.calvin37
adams.calvin37 1d ago • 0 views

Multiple Choice Questions on Scratch Loops for Grade 8

Hey there! 👋 Ready to level up your Scratch looping skills? This study guide and quiz will help you master those 'forever', 'repeat', and 'repeat until' blocks. Let's get coding! 💻
💻 Computer Science & Technology

1 Answers

✅ Best Answer
User Avatar
Ariana_Grande_A Jan 3, 2026

📚 Quick Study Guide

  • ♾️ The forever loop runs the code inside it indefinitely. It never stops unless you manually stop the program.
  • 🔢 The repeat loop runs the code a specific number of times. You define how many times it repeats.
  • ⏱️ The repeat until loop runs the code until a certain condition is met. The condition is checked before each repetition.
  • 🚦 Loops are essential for creating animations, games, and interactive stories in Scratch.
  • 💡 Nesting loops (putting one loop inside another) allows for complex patterns and actions.
  • ✍️ Be careful with forever loops! If not managed well, they can cause your Scratch project to freeze.

Practice Quiz

  1. Which loop in Scratch runs indefinitely?
    1. repeat
    2. repeat until
    3. forever
    4. if-then
  2. Which loop in Scratch requires you to specify the number of times it should repeat?
    1. forever
    2. repeat
    3. repeat until
    4. if-then-else
  3. Which loop in Scratch continues until a specific condition is true?
    1. forever
    2. repeat
    3. repeat until
    4. if-then
  4. What happens if you put a block of code inside a 'forever' loop without any stopping condition?
    1. The code runs once and stops.
    2. The code runs until the sprite reaches the edge of the screen.
    3. The code runs indefinitely, potentially freezing the project.
    4. The code doesn't run at all.
  5. What is it called when you place one loop inside another loop?
    1. Looping
    2. Repeating
    3. Nesting
    4. Stacking
  6. Which of the following is NOT a type of loop in Scratch?
    1. forever
    2. repeat
    3. repeat until
    4. if-then
  7. You want a sprite to move 10 steps and turn 15 degrees, repeating this action 5 times. Which loop would you use?
    1. forever
    2. repeat
    3. repeat until
    4. if-then-else
Click to see Answers
  1. C
  2. B
  3. C
  4. C
  5. C
  6. D
  7. B

Join the discussion

Please log in to post your answer.

Log In

Earn 2 Points for answering. If your answer is selected as the best, you'll get +20 Points! 🚀