1z0-809 Korean試験無料問題集「Oracle Java SE 8 Programmer II (1z0-809 Korean Version) 認定」

주어진:
공개 클래스 Emp {
문자열 fName;
문자열 이름;
공개 Emp(문자열 fn, 문자열 ln) {
f이름 = fn;
이름 = ln;
}
공개 문자열 getfName() { 반환 fName; }
공개 문자열 getlName() { 반환 lName; }
}
및 코드 조각:
List<Emp> emp = Arrays.asList(
새로운 Emp("John", "Smith"),
새로운 Emp("피터", "샘"),
새로운 Emp ( "토마스", "웨일"));
emp.stream()
//라인 n1
.collect(수집기.toList());
어떤 코드 조각이 n1행에 삽입되었을 때 직원 목록을 fName의 내림차순으로 정렬한 다음 lName의 오름차순으로 정렬합니까?

주어진 코드 조각:

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

Player 테이블에서 주어진 레코드:

코드 조각이 주어지면 :
노력하다 {
연결 conn = DriverManager.getConnection(URL, 사용자 이름, 암호); 문 st= conn.createStatement( ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE); st.execute("플레이어에서 * 선택"); st.setMaxRows(2); 결과 집합 rs = st.getResultSet(); rs.absolute(3); 동안 (rs.next()) { System.out.println(rs.getInt(1) + " " + rs.getString(2));
}
} catch(SQLException 예) {
System.out.print("SQLException이 발생했습니다.");
}
다음과 같이 가정합니다.
필수 데이터베이스 드라이버는 클래스 경로에 구성됩니다.
URL, 사용자 이름 및 암호를 사용하여 해당 데이터베이스에 액세스할 수 있습니다.
SQL 쿼리가 유효합니다.
결과는 무엇입니까?

주어진:

프로그램은 어떤 스레딩 문제로 인해 어려움을 겪습니까?

주어진 코드 조각:
스트림<경로> 파일 = 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();
});
결과는 무엇입니까?

주어진 코드 조각:

그리고

emps 목록의 요소를 정렬할 수 있는 두 가지 수정 사항은 무엇입니까? (2개를 선택하세요.)

주어진:
클래스 ImageScanner는 AutoCloseable을 구현합니다. {
public void close()는 예외를 던집니다. {
System.out.print("스캐너가 닫혔습니다.");
}
public void scanImage()는 예외를 던집니다. {
System.out.print("스캔.");
throw new Exception("검색할 수 없습니다.");
}
}
클래스 ImagePrinter는 AutoCloseable을 구현합니다. {
public void close()는 예외를 던집니다. {
System.out.print("프린터가 닫혔습니다.");
}
공개 무효 printImage() {System.out.print("인쇄."); }
}
이 코드 조각:
시도(ImageScanner ir = new ImageScanner();
ImagePrinter iw = 새로운 ImagePrinter()) {
ir.scanImage();
iw.printImage();
} catch (Exception e) {
System.out.print(e.getMessage());
}
결과는 무엇입니까?

주어진:
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);
}
}
결과는 무엇입니까?

주어진 코드 조각:

n1행에 삽입할 때 코드가 /First.txt를 인쇄할 수 있도록 하는 코드 조각은 무엇입니까?

Country 클래스의 정의가 주어지면:
공공 계급 국가 {
public enum Continent {아시아, 유럽}
문자열 이름;
대륙 지역;
공개 국가(문자열 na, 대륙 등록) {
이름 = na, 지역 = reg;
}
공개 문자열 getName() {반환 이름;}
공개 대륙 getRegion() {반환 지역;}
}
및 코드 조각:
목록<국가> couList = Arrays.asList(
새 국가("일본", Country.Continent.ASIA),
새 국가("이탈리아", Country.Continent.EUROPE),
새로운 국가("독일", Country.Continent.EUROPE));
지도<국가.대륙, 목록<문자열>> regionNames = couList.stream()
.collect(Collectors.groupingBy (국가 :: getRegion,
Collectors.mapping(국가::getName, Collectors.toList()))));
System.out.println(지역이름);
출력은 무엇입니까?