which of the following keyboard is optical for FOR NEXT loop ? FOR/ NEXT/ TO/ STEP
Answers
Answered by
1
NEXT
In VBA, looping is used when you need to perform the same task multiple times until a condition is met (or until a condition is true).
‘For Next’ Loop works by running the loop the specified number of times.
For example, if I ask you to add the integers from 1 to 10 manually, you would add the first two numbers, then add the third number to the result, then add the fourth number to the result, as so on..
The same logic is used in the For Next loop in VBA.
You specify how many times you want the loop to run and also specify what you want the code to do each time the loop is run.
Mark me brainliest please ;)
Similar questions