Given a sample code:
1 public class Test {
2 public static void main(String[] args) {
3 int i = 100;
4 switch(i)
5 {
6 default:
7 System.out.println("Default");
8 case 100:
9 System.out.println("100");
10 case 200:
11 System.out.println("200"); }
}}
What will be result when compiled and run?
(A) 100 200
(B) Compilation error at line no-6.
(C) Compilation error at line no-9.
(D) Compilation error at line no-11.
(A)
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.