A

Admin • 830.13K Points
Coach

Q. What is the output of the below Java program with Enums?

Code:
enum Car
{
SEDAN, HATCHBACK, SUV
}
public class EnumTest1
{
public static void main(String[] args)
{
Car c1 = Car.SEDAN;
System.out.println(c1.name() + ", " + c1);
}
}
  • (A) SEDAN,
  • (B) SEDAN, 0
  • (C) SEDAN, SEDAN
  • (D) None of the above
  • Correct Answer - Option(C)
  • Views: 14
  • Filed under category Java
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.