Report Bug
Qus : Which loop is most appropriate when the number of iterations is known beforehand?
Qusजब पुनरावृत्तियों की संख्या पहले से ज्ञात हो तो कौन सा लूप सबसे उपयुक्त है?

A. for loop
B. while loop
C. do-while loop
D. foreach loop


Solution
A. for loop



Explanation
The for loop is commonly used when the number of iterations is known, as the initialization, condition, and increment can all be handled in the loop’s structure.



Report Bug