Oracle Java SE 8 Programmer II (1z0-809 Korean Version) - 1z0-809 Korean무료 덤프문제 풀어보기
다음이 포함된 Greetings.properties 파일이 제공됩니다.

그리고 주어진:

결과는 무엇입니까?

그리고 주어진:

결과는 무엇입니까?
정답: C
주어진 코드 조각:
ZonedDateTime 출발 = ZonedDateTime.of(2015, 1, 15, 3, 0, 0, 0, ZoneID.of("UTC-7")); ZonedDateTime 도착 = ZonedDateTime.of(2015, 1, 15, 9, 0, 0, 0, ZoneID.of("UTC-5")); 긴 시간 = ChronoUnit.HOURS. between(출발, 도착); //line n1 System.out.println("이동 시간은" + hrs + "hours"); 결과는 무엇입니까?
ZonedDateTime 출발 = ZonedDateTime.of(2015, 1, 15, 3, 0, 0, 0, ZoneID.of("UTC-7")); ZonedDateTime 도착 = ZonedDateTime.of(2015, 1, 15, 9, 0, 0, 0, ZoneID.of("UTC-5")); 긴 시간 = ChronoUnit.HOURS. between(출발, 도착); //line n1 System.out.println("이동 시간은" + hrs + "hours"); 결과는 무엇입니까?
정답: A
JDBC 3.0 드라이버를 로드하려면 어떤 코드 조각이 필요합니까?
정답: A
DriverManager 클래스에 대한 설명으로 옳은 것은?
정답: D
설명: (Fast2test 회원만 볼 수 있음)
주어진 코드 조각:

Average = 2.5를 인쇄하려면 n1행에 어떤 것을 삽입해야 합니까?

Average = 2.5를 인쇄하려면 n1행에 어떤 것을 삽입해야 합니까?
정답: C
주어진 코드 조각:
List<String> codes = Arrays.asList ("DOC", "MPEG", "JPEG");
codes.forEach (c -> System.out.print(c + " "));
String fmt = codes.stream()
.filter (s-> s.contains ("PEG"))
.reduce((s, t) -> s + t).get();
System.out.println("\n" + fmt);
결과는 무엇입니까?
List<String> codes = Arrays.asList ("DOC", "MPEG", "JPEG");
codes.forEach (c -> System.out.print(c + " "));
String fmt = codes.stream()
.filter (s-> s.contains ("PEG"))
.reduce((s, t) -> s + t).get();
System.out.println("\n" + fmt);
결과는 무엇입니까?
정답: A
주어진 코드 조각:
스트림<경로> 파일 = Files.list(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();
});
결과는 무엇입니까?
스트림<경로> 파일 = Files.list(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();
});
결과는 무엇입니까?
정답: D
/resourses/Message.properties의 내용을 고려해 보면:
welcome1="좋은 하루 보내세요!"
그리고 다음 코드 조각이 주어졌습니다:
속성 prop = new Properties ();
FileInputStream fis = new FileInputStream ("/resources/Message.properties"); prop.load(fis); System.out.println(prop.getProperty("welcome1")); System.out.println(prop.getProperty("welcome2", "Test"));//line n1 System.out.println(prop.getProperty("welcome3")); 결과는 무엇입니까?
welcome1="좋은 하루 보내세요!"
그리고 다음 코드 조각이 주어졌습니다:
속성 prop = new Properties ();
FileInputStream fis = new FileInputStream ("/resources/Message.properties"); prop.load(fis); System.out.println(prop.getProperty("welcome1")); System.out.println(prop.getProperty("welcome2", "Test"));//line n1 System.out.println(prop.getProperty("welcome3")); 결과는 무엇입니까?
정답: A
주어진 코드 조각:

결과는 무엇입니까?

결과는 무엇입니까?
정답: C