1z0-809-KR 문제 71

주어진 코드 조각:

결과는 무엇입니까?

1z0-809-KR 문제 72

주어진:

및 코드 조각:

코드 조각에서 스피커를 인쇄할 수 있는 수정 사항은 무엇입니까?

1z0-809-KR 문제 73

EMPLOYEE 테이블이 주어지면,

다음 코드 조각을 참고하세요.

데이터베이스가 스크롤과 업데이트를 지원한다고 가정하면 결과는 어떻게 될까요?

1z0-809-KR 문제 74

STUDENT 테이블의 구조가 주어졌을 때:
학생(ID INTEGER, 이름 VARCHAR)
주어진:
public class Test {
static Connection newConnection =null;
public static Connection get DBConnection () throws SQLException {
try (Connection con = DriveManager.getConnection(URL, username, password)) { newConnection = con;
}
return newConnection;
}
public static void main (String [] args) throws SQLException {
get DBConnection ();
Statement st = newConnection.createStatement();
st.executeUpdate("INSERT INTO student VALUES (102, 'Kelvin')");
}
}
다음과 같이 가정합니다.
필수 데이터베이스 드라이버는 클래스 경로에 구성됩니다.
URL, userName 및 passWord가 있는 적절한 데이터베이스에 액세스할 수 있습니다.
SQL 쿼리가 유효합니다.
결과는 무엇입니까?

1z0-809-KR 문제 75

주어진 코드 조각:
클래스 MyThread 구현 Runnable {
private static AtomicInteger count = new AtomicInteger (0);
public void run () {
int x = count.incrementAndGet();
System.out.print (x+" ");
}
}
and
Thread thread1 = new Thread(new MyThread());
Thread thread2 = new Thread(new MyThread());
Thread thread3 = new Thread(new MyThread());
Thread [] ta = {thread1, thread2, thread3};
for (int x= 0; x < 3; x++) {
ta[x].start();
}
어떤 말이 진실이야?