InterviewSolution
Saved Bookmarks
| 1. |
The statement that constructs a branching flow-control construct is _____________(a) BEGIN…END(b) CASE(c) ITERATE(d) LEAVE |
|
Answer» Right choice is (b) CASE The best I can explain: The ‘CASE’ statement provides a branching flow-control construct. When the initial expression, ‘expr’, is present, CASE compares it to the expression following each ‘WHEN’. |
|