Part of algorithm which is repeated for fixed number of times is classified as
1..Iteration
2. Selection
3. Sequence
4.Reverse Action
Answers
Answered by
10
This is an interesting question.
Part of an algorithm which is repeated for the fixed number of times is classified as Iteration. In this, a set of instructions are repeated again and again. In computer programming, a loop is a kind of iteration in which instructions sequence is executed repeatedly. Each iteration starts with the end of previous one.
Hope this will help you.
Part of an algorithm which is repeated for the fixed number of times is classified as Iteration. In this, a set of instructions are repeated again and again. In computer programming, a loop is a kind of iteration in which instructions sequence is executed repeatedly. Each iteration starts with the end of previous one.
Hope this will help you.
Answered by
5
The answer is Option 1.
Part of algorithm which is repeated for fixed number of times is called an iteration. An iteration can also be considered as a repeated performance of executing the same set of instructions more than once until a certain condition is satisfied. Once this condition is completed successfully, the steps following the computation instructions in the iteration start getting executed.
Similar questions