Class 3rd CH - 7 Answer Key
Class 3rd CH - 7 Answer Key
A. Complete the following sentences by filling in the blanks with the correct words.
1. What do you call the building blocks used to create programs in Scratch?
Answer: Blocks
2. What is the name of the sprite that is displayed by default in Scratch?
Answer: Cat
3. Which area of Scratch do you use to see and control your project?
Answer: Stage
4. What do we call the command in Scratch that starts an action or event?
Answer: Event
5. What is the name of the backdrop or background in Scratch?
Answer: Backdrop
C. Answer the following application-based questions based on what you've learned in Scratch.
1. You want to create a simple animation of a cat moving across the screen. What
steps would you follow to make the cat move from one side to the other?
Answer:
○ First, select the Cat sprite.
○ Use the Motion block, specifically the "move 10 steps" block, and drag it into
the coding area.
○ To make the cat move continuously, add a "repeat" block to repeat the
movement.
○ You can also use the "when green flag clicked" block from the Events category
to start the animation when the project begins.
2. If you want to make your sprite speak a line of text in Scratch, which block would
you use? Explain the steps.
Answer:
○ Use the "say [Hello]" for [2] seconds block from the Looks category.
○ Change the text to the message you want your sprite to say, and set the duration
(in seconds).
○ Attach this block to a "when green flag clicked" block to start it when the
project begins.
3. You want to change the background of your Scratch project to a new scene. How
would you do this?
Answer:
○ Click on the Stage and go to the Backdrops section.
○ Choose or import a new backdrop by clicking the "Choose a backdrop" button.
○ You can also use the "switch backdrop to [name]" block from the Looks
category to change backdrops during the project.
4. Imagine you are creating a game where a character collects stars. What would you
need to do to make the sprite move when you press arrow keys on the keyboard?
Answer:
○ Use the "when [right arrow] key pressed" block from the Events category.
○ Add the "move 10 steps" block from the Motion category.
○ Repeat this for other arrow keys (left, up, down) to control the movement in
different directions.
5. You are designing an interactive story. How can you make two characters talk to
each other in Scratch?
Answer:
○ Use the "say [text]" block for each sprite in turn.
○ For example, sprite 1 could say "Hello!" and sprite 2 could reply with "Hi there!".
○ Use "wait [seconds]" blocks to give time between each line of dialogue.