R
Rishtaara
Computer Science · Class 5

Scratch Programming

Learn Scratch Programming with notes, examples, and practice questions.

3 sections15–25 min read6 MCQs · 2 examples

Chapter Overview

Scratch uses visual blocks to teach programming logic — events, motion, loops, and conditions without typing syntax.

Scratch Interface

  • Stage and sprites (characters)
  • Blocks palette: Motion, Looks, Events
  • Scripts area — snap blocks together
  • Green flag runs program

Programming Concepts

  • Event blocks: when flag clicked
  • Repeat/forever loops
  • If/else conditions
  • Variables store values

Solved Examples

Step-by-step solutions — read each step before checking the final answer.

Move sprite

Make sprite move 10 steps when flag clicked.

  1. 1Event: when green flag clicked
  2. 2Motion: move 10 steps
  3. 3Snap blocks together

Answer

Flag event + move block

Repeat animation

Repeat change costume 4 times.

  1. 1Use repeat 4 block
  2. 2Inside: next costume
  3. 3Add wait for smooth animation

Answer

Repeat loop with costume change

Key Points to Remember

  • Sprites can have multiple costumes
  • Share projects responsibly
  • Blocks teach same logic as text code

Exam Tips

  • Know block categories
  • Draw script for given task
  • Explain loop and condition blocks

Practice MCQs — Scratch Programming

Test your understanding with topic-wise multiple choice questions. Explanations appear after each answer.

Question 1 of 6Score: 0/0

Scratch blocks snap like: