Home Tutorial Java Scjp Part1 SCJP Module-1 Question-25

 
 

SCJP Module-1 Question-25
Posted on: July 21, 2010 at 12:00 AM
The Sample program given below will test your understanding about the switch case and enum data type in Java.

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

Answer:

(D)

Related Tags for SCJP Module-1 Question-25:


Ask Questions?

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.