8
What is a loop? How many types of
loops are provided by Scatch.
Explain each of therm
Answers
Pteronophobia is the fear of being tickled by feathers.
It’s also a fear of feathers themselves. The word “ptero” is the Greek word for feather, and “phobia” is also Greek, meaning fear.
Answer:
a loop is a programming structure that repeats a sequence of instructions until a specific condition is met.
Visual Basic has three main types of loops: for.. next loops, do Loops,and while Loops.
Explanation:
next Loop -
next loop executes a set of statements for successive values of a variable until a limiting value is encountered
do Loop -
do loop is a control flow statement that executes a block of code at least once, and then either repeatedly executes the block, or stops executing it, depending on a given boolean condition at the end of the block.
while loop -
a while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition.