Oracle Java SE 8 Programmer II - 1z0-809무료 덤프문제 풀어보기
Given the content of the files:

Given the code fragment from the Test. java file:

What is the result?

Given the code fragment from the Test. java file:

What is the result?
정답: A
Given:
class FuelNotAvailException extends Exception { }
class Vehicle {
void ride() throws FuelNotAvailException {//line n1
System.out.println("Happy Journey!");
}
}
class SolarVehicle extends Vehicle {
public void ride () throws Exception {//line n2
super ride ();
}
}
and the code fragment:
public static void main (String[] args) throws FuelNotAvailException, Exception { Vehicle v = new SolarVehicle (); v.ride();
}
Which modification enables the code fragment to print Happy Journey!?
class FuelNotAvailException extends Exception { }
class Vehicle {
void ride() throws FuelNotAvailException {//line n1
System.out.println("Happy Journey!");
}
}
class SolarVehicle extends Vehicle {
public void ride () throws Exception {//line n2
super ride ();
}
}
and the code fragment:
public static void main (String[] args) throws FuelNotAvailException, Exception { Vehicle v = new SolarVehicle (); v.ride();
}
Which modification enables the code fragment to print Happy Journey!?
정답: C
Given the definition of the Vehicle class:
class Vehicle {
String name;
void setName (String name) {
this.name = name;
}
String getName() {
return name;
}
}
Which action encapsulates the Vehicle class?
class Vehicle {
String name;
void setName (String name) {
this.name = name;
}
String getName() {
return name;
}
}
Which action encapsulates the Vehicle class?
정답: D
Given:

and

Which interface from the java.util.function package should you use to refactor the class Txt?

and

Which interface from the java.util.function package should you use to refactor the class Txt?
정답: A
설명: (Fast2test 회원만 볼 수 있음)
Given the code fragment:

What is the result?

What is the result?
정답: D
Given records from the Player table:

and given the code fragment:
try {
Connection conn = DriverManager.getConnection(URL, username, password); Statement st= conn.createStatement( ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE); st.execute ("SELECT * FROM Player"); st.setMaxRows(2); ResultSet rs = st.getResultSet(); rs.absolute(3); while (rs.next ()) { System.out.println(rs.getInt(1) + " " + rs.getString(2));
}
} catch (SQLException ex) {
System.out.print("SQLException is thrown.");
}
Assume that:
The required database driver is configured in the classpath.
The appropriate database is accessible with URL, username, and password.
The SQL query is valid.
What is the result?

and given the code fragment:
try {
Connection conn = DriverManager.getConnection(URL, username, password); Statement st= conn.createStatement( ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE); st.execute ("SELECT * FROM Player"); st.setMaxRows(2); ResultSet rs = st.getResultSet(); rs.absolute(3); while (rs.next ()) { System.out.println(rs.getInt(1) + " " + rs.getString(2));
}
} catch (SQLException ex) {
System.out.print("SQLException is thrown.");
}
Assume that:
The required database driver is configured in the classpath.
The appropriate database is accessible with URL, username, and password.
The SQL query is valid.
What is the result?
정답: B
For which three objects must a vendor provide implementations in its JDBC driver? (Choose three.)
정답: A,D,E
설명: (Fast2test 회원만 볼 수 있음)
Given this code;

Which two are correct after this class is instantiated and tested?

Which two are correct after this class is instantiated and tested?
정답: E,F
Given:

Which two interfaces can you use to create lambda expressions? (Choose two.)

Which two interfaces can you use to create lambda expressions? (Choose two.)
정답: C,D
Assume customers.txt is accessible and contains multiple lines.
Which code fragment prints the contents of the customers.txt file?
Which code fragment prints the contents of the customers.txt file?
정답: C