1z0-809 Exam Question 96

Given the definition of the Emp class:
public class Emp
private String eName;
private Integer eAge;
Emp(String eN, Integer eA) {
this.eName = eN;
this.eAge = eA;
}
public Integer getEAge () {return eAge;}
public String getEName () {return eName;}
}
and code fragment:
List<Emp>li = Arrays.asList(new Emp("Sam", 20), New Emp("John", 60), New Emp("Jim", 51)); Predicate<Emp> agVal = s -> s.getEAge() <= 60;//line n1 li = li.stream().filter(agVal).collect(Collectors.toList()); Stream<String> names = li.stream()map.(Emp::getEName);//line n2 names.forEach(n -> System.out.print(n + " ")); What is the result?
  • 1z0-809 Exam Question 97

    Which action can be used to load a database driver by using JDBC3.0?
  • 1z0-809 Exam Question 98

    Given the code fragment:

    What is the result?
  • 1z0-809 Exam Question 99

    Given:

    And given the code fragment:

    What is the result?
  • 1z0-809 Exam Question 100

    Given:

    Which two interfaces can you use to create lambda expressions?