InterviewSolution
Saved Bookmarks
| 1. |
Which statement exits a labeled flow-control construct?(a) DESCRIBE(b) LEAVE(c) LOOP(d) RETURN |
|
Answer» Right option is (b) LEAVE To explain: The ‘LEAVE’ statement is used to exit a labeled flow-control construct. This statement must appear within the construct that has the given label. The syntax of the statement is ‘LEAVE label’. |
|