Q. What is the output of below code snippet?
Code: enum Levels
{
private TOP,
public MEDIUM,
protected BOTTOM;
}
β
Correct Answer: (D)
Compilation Error
enum Levels
{
private TOP,
public MEDIUM,
protected BOTTOM;
}
You must be Logged in to update hint/solution