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
Join The Discussion