1z1-808 試験問題を無料オンラインアクセス
試験コード: | 1z1-808 |
試験名称: | Java SE 8 Programmer I |
認定資格: | Oracle |
無料問題数: | 398 |
更新日: | 2025-09-19 |
Given the code fragment:
for (int ii = 0; ii < 3;ii++) {
int count = 0;
for (int jj = 3; jj > 0; jj--) {
if (ii == jj) {
++count;
break;
}
}
System.out.print(count);
continue;
}
What is the result?
Which statement is/are true?
I. Default constructor only contains "super();" call.
II. We can't use any access modifier with a constructor.
III. A constructor should not have a return type.