InterviewSolution
Saved Bookmarks
| 1. |
What Is Default ? |
|
Answer» A Java KEYWORD optionally used after all CASE conditions in a switch statement. If all case conditions are not MATCHED by the value of the switch VARIABLE, the default keyword will be executed. A Java keyword optionally used after all case conditions in a switch statement. If all case conditions are not matched by the value of the switch variable, the default keyword will be executed. |
|