1z0-809 문제 81

로케일 변수를 올바르게 초기화하는 두 개의 코드 블록은 무엇입니까?

1z0-809 문제 82

주어진 코드 조각:
List<Integer> 코드 = Arrays.asList(10, 20);
UnaryOperator<Double> uo = s -> s +10.0;
code.replaceAll(uo);
code.forEach(c -> System.out.println(c));
결과는 무엇입니까?

1z0-809 문제 83

Bookclass의 정의가 주어지면:

Bookclass에 대한 설명으로 옳은 것은?

1z0-809 문제 84

주어진 코드 조각:

결과는 무엇입니까?

1z0-809 문제 85

주어진 코드 조각:
스트림<경로> 파일 = Files.walk(Paths.get(System.getProperty("user.home"))); files.forEach (fName -> { //라인 n1 try { 경로 aPath = fName.toAbsolutePath(); //라인 n2 System.out.println(fName + ":"
+ Files.readAttributes(aPath,
Basic.File.Attributes.class).creationTime
());
} catch(IOException 예) {
ex.printStackTrace();
});
결과는 무엇입니까?