You are on page 1of 3

Chapter 5

More on Scratch
Fill in the blanks.
1. The forever block is present in the control block category.
2. Erase all block removes all the lines drawn by the pen.
3. Stamp is the temporary copy of a sprite.
4. The block to execute the code is available in the event block.
5. The repeat block runs the blocks inside it over and over again.

Write the commands for the following statements.


1. To change the color of the pen to red. – Change pen color by
2. To change the pen size to 4. – Change pen size by
3. To draw a line on the movement of the sprite. – Pen down
4. To bounce the Sprite if it hits the edge of the Stage. - if on edge,
bounce
5. To make a duplicate copy of the Sprite. - duplicate
6. To repeat the block code four times. – Repeat 4 times
State the difference between the following commands.
1. Pen up and Pen down
Pen up: Pulls up the Sprite’s pen so that it does not draw when
the sprite moves.
Pen down: Draws a line as the Sprite moves on the stage.

2. Set pen color to and change pen color by


Set pen color to: sets the color of the pen to a specific color or
number.
Change pen color by: Changes the color of the pen by a specific
color or a number.
3. Repeat (10) and repeat until
Repeat(10): Runs the block inside it for 10 times.
Repeat Until: Repeats the block until the condition is true.

4. Change pen size by (1) and set pen size to(1)


Change pen size by(1): This block is used to change the thickness
of the pen to 1.
Set pen size to (1): This block is used to sets the thickness of the
pen to 1.

Answer the following questions.


1. What is a stamp in Scratch?
Ans: Stamp is a temporary image of the sprite that can be placed
on the Stage.

2. What is the use of the Pen block menu?


Ans: Pen block is used to draw in the scratch to create several
effects on the sprite.

3. Name any three blocks under the control block category.


Ans: repeat, forever, repeat until.

4. Name the conditional statements block available in Scratch.


Ans: if … then , if……then……….. else.

5. State the uses of the Forever block under the Control block.
Ans: Forever block is used to run the block inside it over and over
again.
LAB WORK PRACTICE QUESTIONS:
1. Draw the following images in scratch.
a. b.

2. Insert a new sprite of clapping hands. Use loops to make the


hands claps. Add the sound of clapping and save the project.

3. Moves the cat in a fixed motion and displays hello.

4. Moves the ball to continue until you press the spacebar key.

5. Create a dancing girl.

You might also like