Assume that the following enumerated data type has been declared: Enum Creatures{ HOBBIT, ELF, DRAGON } What

Question:

Assume that the following enumerated data type has been declared: 

Enum Creatures{ HOBBIT, ELF, DRAGON }

What will the following code display? 

System.out.println(Creatures.HOBBIT + " "
 + Creatures.ELF + " "
 + Creatures.DRAGON);

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: