Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1.Each repetition of a loop is known as a(n)________. 2.A loop that evaluates it

ID: 3641095 • Letter: 1

Question

1.Each repetition of a loop is known as a(n)________.

2.A loop that evaluates its test expression before each repetition is a(n) _______ loop.

3.A loop that evaluates its test expression after each repetition is a(n) _______ loop.

4.A loop that does not have a way of stopping is a(n) __________ loop.

5.A(n)________ is a variable that "counts" the number of times a loop repeats.

6.A(n)_______ is a sum of numbers that accumulates with each iteration of a loop.

7.A(n) _________ is a variable that is initialized to some stating value, usually zero, and then has numbers added to it in each iteration of a loop.

8.A(n) ___________ is a special value that marks the end of a series of values.

Explanation / Answer

1)iteration 2)while 3)for 4)infinite loop 5)counter (iterator) 6)running total 7)counter