Multiple Choice Question

Quiz Guidelines

 

QID: 
143
Question: 

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( "bat" );
              break;
              case "B" : System.out.println( "big bat" );
              default : System.out.println( "none" );
       }
}
public static void main(String[] args) throws Exception {
        TestClass tc = new TestClass();
        tc.switchString("B");
    }
}

Select 1 option

A. bat
big bat
B. big bat
none
C. big bat
D. bat
E. The code will not compile.

Q&A Set: