FUNDAMENTALS OF COMPUTER

WEB BROWSERS TECHNOLOGY

WHAT IS WEB TECHNOLOGY

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
What for statament parameter sets starting value?
A
counter
B
condition
C
increment/decrement
D
do-while
Explanation: 

Detailed explanation-1: -Loop counters change with each iteration of a loop, providing a unique value for each individual iteration. The loop counter is used to decide when the loop should terminate and for the program flow to continue to the next instruction after the loop.

Detailed explanation-2: -A counting loop, or counter-controlled loop, is a loop in which you know beforehand how many times it will be repeated. Among the preceding examples, the first two are counting loops. Because you know the exact number of times the loop repeats beforehand, a counting loop can be made dependent on the value of a counter.

Detailed explanation-3: -The For statement specifies the counter variable and its start and end values. The Next statement increments the counter variable by 1. Using the Step keyword, you can increase or decrease the counter variable by the value you specify.

There is 1 question to complete.