What will be the expected output after the following stateme…
What will be the expected output after the following statements are executed? char custType = ‘c’; switch (custType) { case ‘A’: System.out.println(“The customer type is A”); break; case ‘B’: case ‘b’: System.out.println(“The customer type is B”); case ‘C’: System.out.println(“The customer type is C”); default: System.out.println(“The customer type is D”); }