Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question # 1 multiple choice you have used loops for repetitive process…

Question

question # 1 multiple choice you have used loops for repetitive processes. which kind of loop is used when you know ahead of time how many passes you want to make through a loop. do if while for

Explanation:

Brief Explanations

In programming, a for loop is typically used when the number of iterations is known in advance. The do - while and while loops continue based on a condition being true, not on a pre - determined number of passes. The if statement is not a loop; it's a conditional statement.

Answer:

D. for