Home » Java Programming » Flow Control

What will be the output of the program? int i = l, j = -1; switch (i) { case 0, 1: j = 1; /* Line 4 */ case 2: j = 2; default: j = 0; } System.out.println("j = " + j);

Correct Answer: Compilation fails.

Explanation:

The case statement takes only a single argument. The case statement on line 4 is given two arguments so the compiler complains.

← Previous Question Next Question→

More Questions from Flow Control

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion