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)); -);
Step by Step Solution
3.44 Rating (160 Votes )
There are 3 Steps involved in it
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
Get step-by-step solutions from verified subject matter experts
