What is the output of the below Java program with a SWITCH s…
What is the output of the below Java program with a SWITCH statement? //Your grade out of 20int points=16; switch(points) { case 16: ; case 17: System.out.println(“PASS”);break; case 18: ; case 19: System.out.println(“Excellent”);break; case 20: System.out.println(“Outstanding”); break; default: System.out.println(“FAIL”); }
Read Details