R
Q. What is the output of the below Java program with Enums?
enum Car { SEDAN, HATCHBACK, SUV } public class EnumTest1 { public static void main(String[] args) { Car c1 = Car.SEDAN; System.out.println(c1.name() + ", " + c1); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which one was the initial name of Java
Q. What is the output of the following code snippet?
Q. Which of the following is not a valid way to declare a char variable in Java?
Q. Which statement is true about Java?
Q. What is the name of the method used to start a thread execution?
Discusssion
Login to discuss.