1z0-809 무료 덤프문제 온라인 액세스

시험코드:1z0-809
시험이름:Java SE 8 Programmer II
인증사:Oracle
무료 덤프 문항수:209
업로드 날짜:2026-06-03
평점
100%

문제 1

Which class definition compiles?

문제 2

Given:
class UserException extends Exception { }
class AgeOutOfLimitException extends UserException { }
and the code fragment:
class App {
public void doRegister(String name, int age)
throws UserException, AgeOutOfLimitException {
if (name.length () <= 60) {
throw new UserException ();
} else if (age > 60) {
throw new AgeOutOfLimitException ();
} else {
System.out.println("User is registered.");
}
}
public static void main(String[ ] args) throws UserException {
App t = new App ();
t.doRegister("Mathew", 60);
}
}
What is the result?

문제 3

Given:

Which option fails?

문제 4

Given the definition of the Employee class:

and this code fragment:

What is the result?

문제 5

Given the code fragment:
List<String> nL = Arrays.asList("Jim", "John", "Jeff");
Function<String, String> funVal = s -> "Hello : ".contact(s);
nL.Stream()
.map(funVal)
.peek(System.out::print);
What is the result?

댓글 추가

귀하의 메일주소는 공개되지 않습니다. 필수 입력 사항은 표시되어 있습니다. *

insert code
그림의 인증번호를 입력하세요.