Computer Science, asked by stephiniee, 9 months ago

What is FOR...NEXT Statement?
Syntax

Answers

Answered by superjunior
6

Answer:

FOR...NEXT Statement is used to repeat a set of statement (s) a fixed number of times. It uses a counter to count the number of executions.

Explanation:

{\texttt{\Syntex}}

For counter = Initial value to find value.

VB statement (s)

Answered by aditya47368
2

FOR ... NEXT IS A LOOPING STATEMENT WHICH HELPS TO LOOP THE PROGRAM FOR A FIXED NUMBER OF TIMES.

SYNTAX:

FOR (variable)= loop

NEXT(variable)

Similar questions