13. What is the variable used for the purpose of count the numbers entered
in a loop known as:
Answers
Answered by
1
Answer:
counter
Explanation:
eg
for k = 1 to 10
here k is countet
Answered by
0
Explanation:
The variable used in the loop condition is the number i , which you use to count the integers from 1 to 10 . ... In the condition, you check whether i is less than or equal to 10 , and if this is true you execute the loop body.
Similar questions