Find the error in the code segments, and explain how to correct it:
```
switch (n) {
case 1:
System.out.println("The number is 1");
case 2:
System.out.println("The number is 2");
break;
default:
System.out.println("The number is not 1 or 2");
break;
}
```
Error: The missing code is the break statement in the statements for the first case.
Correction: Add a break statement at the end of the statements for the first case. This omission is not necessarily an error if you want the statement of case 2: to ex- ecute every time the case 1: statement executes.
You might also like to view...
Users may be required to have a(n) ________ in order to stop enforcing the protection applied to a document
Fill in the blank(s) with correct word
If you make a mistake, you can go back and undo the error. What is the keyboard shortcut for undo?
What will be an ideal response?
Some software engineering activities overlap with the systems analysis and design activities.
Answer the following statement true (T) or false (F)
What is the shortcut method for deleting a selected column or row?
A. [Shift] B. [Shift][Delete] C. [Enter] D. [Ctrl][K]