What will be the output of the following Java code snippet?
class A
{
}
enum Enums extends A
{
ABC, BCD, CDE, DEF;
}
class A
{
}
enum Enums extends A
{
ABC, BCD, CDE, DEF;
}A. Runtime Error
B. Compilation Error
C. It runs successfully
D. EnumNotDefined Exception
Answer: Option B
Related Questions on Data Types and Variables
Which of the following is not a valid identifier for a Java variable?
A. my_var
B. _myVar
C. 3rdVar
D. $var

Join The Discussion