What term is used to describe the activity of performing the same operation multiple times in programming?
What term is used to describe the activity of performing the same operation multiple times in programming?
پروگرامنگ میں ایک ہی آپریشن کو متعدد بار انجام دینے کی سرگرمی کو بیان کرنے کے لیے کون سی اصطلاح استعمال کی جاتی ہے؟
Explanation
Iteration refers to the process of repeatedly executing a set of instructions or statements in a loop.
It is used to perform the same operation multiple times, such as in loops like for, while, and do-while.
Additional information::
Recursion involves a function calling itself,
Conditional statements and function calls serve different purposes in programming.