35 solutions available
Question 1Carefully go through some sample scripts given below. What is happening in each of these scripts ?
Question 2How are following two scripts different from one another ?
Question 3Create a fun game in scratch where there are two sprites on the stage cat sprite and a ball sprite. Ball is forever moving on stage. The...
Question 1Write a script/program to draw a heptagon on the stage.
Question 2Write a script/program to draw an Octagon on the stage.
Question 3Using drawing commands, carefully design a script to draw the adjacent figure on the stage.
Question 1In which block category do you find blocks to start your script ?OperatorsEventsDataMotion
Question 2In which category do you find block to change the direction of sprite ?OperatorsEventsDataMotion
Question 3The background on which your script runs or your sprite moves, is called ............... .SpriteBackdropBackgroundThe stage
Question 4The background imagery of the stage is known as ............... .SpriteBackdropBackgroundThe stage
Question 5Which of the following command will leave impression of sprite on the stage ?Pen downPen upStampDown
Question 6Which of the following command will prevent your sprite to move off the stage ?go to x .......... y ..........set x to ..........If On...
Question 7Which of the following will take action based on an action only once ?repeat until <condition>if <condition> thenrepeat...
Question 8From the given table of letters, find words / terms related to Scratch (can be left-to-right, right-to-left, top-to-bottom, diagonally...
Question 9Look at the section of code opposite that controls a sprite.Write down what you think the user will see when the green flag is clicked.
Question 10Why did you think the sprite behaved this way ? (refer to above question)
Question 11A position on the stage is also called ................ .pospartpixeldot ?
Question 12Name the block to replay an action (or a set of actions) for a specific number of timesrepeat blockif blockforever blockrepeat until block
Question 13Name the block to keep repeating a set of action endlesslyrepeat blockif blockforever blockrepeat until block
Question 14Name the block used to perform an action or a set of actions only if some condition is true or another action has happened...
Question 15The location of the sprite on the stage can be controlled viathe paint editorcontrol blockthe "x" and "y" coordinateslooks block
Question 16Match the following statements(i) Group of commands that together make a sprite behave in a certain way(a) Motion Blocks(ii) Blocks used...
Question 17The following block is an example of a(n) ................. .OperatorLoopAlgorithmVariable
Question 1What is program ? What is programming ?
Question 2What do you understand by these terms ?(a) Stage(b) Sprite(c) Blocks Palette
Question 3What does a script or a program do in Scratch ?
Question 4What are the values for four main directions in Scratch ?
Question 5State true or false.(a) Control category contains blocks that start or stop a script.(b) You can even load own sprite from a file.(c) You...
Question 6Look at the section of code below that controls a sprite.Write down what you think the user will see when the green flag is clicked.
Question 7In the stack of blocks below, how many times does the sprite move 10 steps?
Question 8What is the job of the 'forever' script ?
Question 9What instructions would I use if I wanted a loop to execute 10 times ?
Question 10What is a loop ?A loop is a conditional statement that needs to be directed for it to workTells sprites what to doChanges the font a...
Question 11What is an infinite loop or continuous loop ?
Question 12What is an if-statement ? Give two examples.