From the SCJP Questions PDF book, I got this question..
1. enum Animals { 2. DOG("woof"), CAT("meow"), FISH("burble"); 3. String sound; 4. Animals(String s) { sound = s; } 5. } 6. class TestEnum { 7. static Animals ...
public enum Scale2 { GOOD('C') { public char getGrade() { ...