123k views
0 votes
Many loop control variable values are altered by ____ or adding to them

User Jun Han
by
5.0k points

1 Answer

5 votes

Answer:

The answer to this question is "Incrementing".

Explanation:

In this question the answer is Incrementing because When we declare the for loop it takes three things that can be explained by following syntax that can be given as:

Syntax:

for ( initialization; condition checking; increment or decrements )

{

statements

}

In the initialization, we initialize(starting) value. In the condition checking, we check the condition that value is not above the condition value. Then we increment or decrements the value. In the loop, it controls variable value and alter value by increment or add to them.

User Manoj
by
5.0k points