Valid 1z0-809 Dumps shared by ExamDiscuss.com for Helping Passing 1z0-809 Exam! ExamDiscuss.com now offer the newest 1z0-809 exam dumps, the ExamDiscuss.com 1z0-809 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1z0-809 dumps with Test Engine here:
Given: public class Emp { String fName; String lName; public Emp (String fn, String ln) { fName = fn; lName = ln; } public String getfName() { return fName; } public String getlName() { return lName; } } and the code fragment: List<Emp> emp = Arrays.asList ( new Emp ("John", "Smith"), new Emp ("Peter", "Sam"), new Emp ("Thomas", "Wale")); emp.stream() / /line n1 . collect(Collectors.toList()); Which code fragment, when inserted at line n1, sorts the employees list in descending order of fNameand then ascending order of lName?