Question: Here are two pieces of Java code. Java code 1 if (day 1) System.out.println(Monday); if (day 2) System.out.println(Tuesday); Java code 2 switch (day) { case

Here are two pieces of Java code. Java code 1 if (day 1) System.out.println("Monday"); if (day 2) System.out.println("Tuesday"); Java code 2 switch (day) { case 1: System.out.println("Monday"); case 2: System.out.println("Tuesday"); Do the above two pieces of code produce the same output regardless of the value of day ? Yes, they do No, they don't
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
