InterviewSolution
Saved Bookmarks
| 1. |
From where break statement causes an exit?(a) Only from innermost loop(b) Terminates a program(c) Only from innermost switch(d) From innermost loops or switches |
|
Answer» The correct choice is (d) From innermost loops or switches For explanation I would say: The break statement causes an exit from innermost loop or switch. |
|