Engineering Full Stack Apps with Java and JavaScript
What will the following code print when run?
public class TestClass { public void switchString(String input){ switch(input){ case "a" : System.out.println( "apple" ); case "b" : System.out.println( "banana" ); break; case "B" : System.out.println( "Banana" ); default : System.out.println( "none" ); } } public static void main(String[] args) throws Exception { TestClass tc = new TestClass(); tc.switchString("B"); } }
Select 1 option
A. banana
Banana
B. Banana
none
C. Banana
D. banana
E. The code will not compile.