एल्गोरिथम का वह भाग जिसे निश्चित संख्या में बार-बार दोहराया जाता है, को इस प्रकार वर्गीकृत किया गया है
Part of algorithm which is repeated for fixed number of times is classified as
A
Iteration
B
Function
C
Conditional
D
Generate Options
Explanation
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.
Correct Answer: A) Iteration