CBSE Class 9 Computer Applications Question 13 of 35

Scratch Programming I — Question 7

Back to all questions
7
Question

Question 7

Which of the following will take action based on an action only once ?

  1. repeat until <condition>
  2. if <condition> then
  3. repeat ..........
  4. none of these
Answer

if <condition> then

Reason — The if <condition> then block takes an action depending on a certain condition.