Q. What will be the output of the following Java code snippet?
enum Levels
{
private TOP,
public MEDIUM,
protected BOTTOM;
}
β
Correct Answer: (D)
Compilation Error