1Z0-853 試験問題を無料オンラインアクセス
| 試験コード: | 1Z0-853 |
| 試験名称: | Java Standard Edition 5 Programmer Certified Professional Exam |
| 認定資格: | Oracle |
| 無料問題数: | 362 |
| 更新日: | 2026-07-26 |
Click the Exhibit button.
Given:
25.
try {
26.
A a = new A();
27.
a.method1();
28.
} catch (Exception e) {
29.
System.out.print("an error occurred");
30.
}
Which two statements are true if a NullPointerException is thrown on line 3 of class C? (Choose two.)
Given:
1.public class TestFive {
2.private int x;
3.public void foo() {
4.int current = x;
5.x = current + 1;
6.}
7.public void go() {
8.for(int i = 0; i < 5; i++) {
9.new Thread() {
10.
public void run() {
11.
foo();
12.
System.out.print(x + ", ");
13.
} }.start();
14.
} }
Which two changes, taken together, would guarantee the output: 1, 2, 3, 4, 5, ? (Choose two.)
Given:
35.
String #name = "Jane Doe";
36.
int $age = 24;
37.
Double _height = 123.5;
38.
double ~temp = 37.5;
Which two statements are true? (Choose two.)


