Given:
You want the code to produce this output:
John
Joe
Jane
Which code fragment should be inserted on line 1 and line 2 to produce the output?
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?

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?

Given:
This code results in a compilation error.
Which code should be inserted on line 1 for a successful compilation?

Given:
Which two interfaces can be used in lambda expressions? (Choose two.)