Question: You have an ArrayList of names that you want to sort alphabetically. Which approach would **NOT** work?

  1. `names.sort(Comparator.comparing(String::toString))`
  2. `Collections.sort(names)`
  3. `names.sort(List.DESCENDING)`
  4. `names.stream().sorted((s1, s2) -> s1.compareTo(s2)).collect(Collectors.toList())`

Answer: The correct answer of the above question is Option C:`names.sort(List.DESCENDING)`