Examveda

What will be the output of the following Java code snippet?
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


This Question Belongs to Java Program >> Data Types And Variables

Join The Discussion

Related Questions on Data Types and Variables