Sail E0 Webinar
Question


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);
Options:
A .  j = -1
B .  j = 0
C .  j = 1
D .  Compilation fails.
Answer: Option D

The case statement takes only a single argument. The case statement on line 4 is 

given two arguments so the compiler complains.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers