Given a sample code:
1 class Test {
2 public enum Man {
3 RAJ, SURAJ, DINESH, GUYS
};
4 public static void main(String[] args) {
5 Man me = Man.GUYS;
6 switch (me) {
7 case RAJ:
8 System.out.print("Raj ");
9 case SURAJ:
10 System.out.print("Suraj ");
11 default:
12 System.out.print("Anyone ");
}}}
What will be the result? Choose the correct option?
(A) Raj Suraj Anyone
(B) Runtime error.
(C) Compilation error at line no 5.
(D) Anyone
(D)
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.