Question: Fill in the blank so the code prints gamma. var list = Arrays.asList(alpha, beta, gamma); Collections.sort (list, System.out.println(list.get (0)); -);

Fill in the blank so the code prints gamma. 

var list = Arrays.asList("alpha", "beta", "gamma"); Collections.sort (list, System.out.println(list.get (0)); -);

image text in transcribed

var list = Arrays.asList("alpha", "beta", "gamma"); Collections.sort (list, System.out.println(list.get (0)); -);

Step by Step Solution

3.44 Rating (160 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To ensure that gamma gets printed we need to choose a comparator that sorts the list in such a way that gamma becomes the first element in the sorted ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Oracle Questions!