English, asked by arpitatudu033, 2 months ago

write the difference between WHILE... WEND AND FOR NEXT STATEMENT​

Answers

Answered by Anonymous
9

Answer:

Only difference between these two loops is that, in while loops, test expression is checked at first but, in do while loop code is executed at first then the condition is checked. So, the code are executed at least once in do while loops.

Answered by hanockgamer611
6

Answer:

answer for e.

You use a For ... Next structure when you want to repeat a set of statements a set number of times. In the following example, the index variable starts with a value of 1 and is incremented with each iteration of the loop, ending after the value of index reaches 5.

Similar questions