Which variable takes a new value from the range of values every time the loop is executed?
Answer:
The control variable takes a new value from the range of values every time the loop is executed.
Example:
In the above program, ‘i’ is the control variable and its value increments by 1 in every iteration of the loop.