What will be the output of the following Java code snippet?i…
What will be the output of the following Java code snippet?int a = 5;int b = 20;int c = 15;if (a < b){ if (b < c){ System.out.println("Condition 1"); } else { System.out.println("Condition 2"); } } else { System.out.println("Condition 3"); }
Read Details