InterviewSolution
Saved Bookmarks
| 1. |
Which statement inside for Next structure is used to provide an alternative way to exit? |
|
Answer» Any number of Exit For STATEMENTS may be PLACED anywhere in the LOOP as an alternate way to exit. Exit For is often used after evaluating some condition, for example If Then, and transfers control to the statement immediately following Next. |
|