Welcome to TestSimulate

Pass Your Next Certification Exam Fast!

Everything you need to prepare, learn & pass your certification exam easily.

365 days free updates. First attempt guaranteed success.

Oracle Java SE 8 Programmer I (1z0-808日本語版) (1z0-808日本語) Free Practice Test

Question 1
例外処理に関して正しい 3 つの記述はどれですか?

Correct Answer: A,C,D
Question 2
与えられたコード断片:

結果は何ですか?

Correct Answer: B
Question 3
コードの断片を考えると、次のようになります。
public class Test {
public static void main(String[] args) {
boolean isChecked = false;
int arry[] = {1,3,5,7,8,9};
int index = arry.length;
while ( <code1> ) {
if (arry[index-1] % 2 ==0) {
isChecked = true;
}
<code2>
}
System.out.print(arry(index]+", "+isChecked));
}
}
どの変更セットにより、コードが 1、true を出力できるようになりますか?

Correct Answer: B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 4
与えられた:

結果は何ですか?

Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 5
Java クラスの構造に関して正しい 3 つの記述はどれですか?

Correct Answer: D,E,F
Question 6
与えられる:
結果は何ですか?

Correct Answer: D
Question 7
コードの断片を考えると、次のようになります。

結果は何ですか?

Correct Answer: B
Question 8
展示品をご覧ください。
public class Hat {
public int ID =0;
public String name = "hat";
public String size = "One Size Fit All";
public String color="";
public String getName() { return name; }
public void setName(String name) {
this.name = name;
}
}
与えられる:
public class TestHat {
public static void main(String[] args) {
Hat blackCowboyHat = new Hat();
}
}
Hat インスタンスの名前を設定するステートメントはどれですか?

Correct Answer: B
Question 9
与えられます:

結果は何ですか?

Correct Answer: E