Which of the following is a variable that is regularity incr
Which of the following is a variable that is regularity incremented of decremented each time a loop iterates? Which of the following loops is a good choice when you know how many times you want the loop to iterate in advance of entering the loop? Which of the following statements causes a loop to terminate early? what will the following code display?
Solution
13) Counter( as it is variable and not a constant unlike others).e.g:int x = int x+1
14) do while( as while loop will run unknown number of times until a specific conditiion is met.
15) break
16) option c(0 1 2 3 4)
