question 1\na ____ loop is one in which the number of repetitions is known in advance.\no counter…

question 1\na ____ loop is one in which the number of repetitions is known in advance.\no counter - controlled\no condition - controlled\n9 pts
Answer
Brief Explanations:
In programming, a counter - controlled loop has a pre - determined number of iterations. A condition - controlled loop continues as long as a certain condition is true, and the number of repetitions isn't known in advance. Since the loop in question has a known number of repetitions in advance, it is a counter - controlled loop.
Answer:
counter - controlled