What is the output of the given java program?
public class HelloWorld
{
public static void main(String []args)
{
int i = 1024<<8<<3>>8>>3;
switch(i)
{
default : System.out.println("Default");
case 1048576/(34*32) : System.out.println("Case 1");
case 1073741824/(2*32*4*32*16*8) : System.out.println("Case 2");
case 1048576/(32*32) : System.out.println("Case 3");
}
}
}
Reveal answer
Fill a bubble to check yourself