Computer Science, asked by warriorlion, 1 day ago

Write the syntax of For…..Next Loop.​

Answers

Answered by aryankhaneja7
1

Answer:

For variable identifies the start of the loop. start To end specifies the start and end value of the counter that defines how many times the program is to loop. Step increment specifies the amount the counter is increased when a Next statement is reached

Explanation:

when we write one For loop inside the body of another For Next loop, it is called Nested For Next loop. Syntax: For variable_name As [Data Type] = start To end [ Step step ] For variable_name As [Data Type] = start To end [ Step step ]

Similar questions