What is the default Step value in a for... Next loop? Is it possible to have a negative value in STEP?
Attachments:
Answers
Answered by
0
Answer:
The answer is below
Explanation:
the default Step value in a for... Next loop is 1 It is always one by default
but you can change it according to your choice while making a program
so you must know the basics of programming.
And YES it is possible to have a negative value in step it is done to obtain the backward number ...
tep value is the value by which the counter variable is incremented or decremented every time the loop body is executed. It can be a positive or a negative value, but it cannot be zero. The step value is optional
Similar questions