
Java
The variable(s) used inside the for loop for comparison (with the mentioned condition) and increment/decrement is know as the index variable.
for example (Java) :
for(int i=1; i<5; i++){
...
}
in this example, integer 'i' is the index variable.
Copyright © 2026 eLLeNow.com All Rights Reserved.