Given:
and omitting the throws FooException clause results in a compilation error.
Which statement is true about FooException?
Given this enum declaration:
Examine this code:
System.out.println(Alphabet.getFirstLetter());
What code should be written at line 3 to make this code print A?
Given this enum declaration:
Examine this code:
System.out.println(Letter.values()[1]);
What code should be written at line 5 for this code to print 200?
