Q. What will be the output of the following Java code snippet?
class A
{
}
enum Enums extends A
{
ABC, BCD, CDE, DEF;
}
β
Correct Answer: (B)
Compilation Error