What is the output of the given java program?
public class HelloWorld
{
public static void main(String []args)
{
int i= (int)Math.round(Math.hypot(114,123));
switch(i) // Line 1 { default : System.out.println("Default Case");
case 128<<6<<3 : System.out.println("Case 1");
case 9072/54 : System.out.
println("Case 2"); case 128<<4<<2 :
System.out.println("Case 3");
}
}
}
Reveal answer
Fill a bubble to check yourself