question # 1 multiple choice you have used loops for repetitive processes. which kind of loop is used when…

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
Answer
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