1Z0-815 試験問題を無料オンラインアクセス
| 試験コード: | 1Z0-815 |
| 試験名称: | Java SE 11 Programmer I |
| 認定資格: | Oracle |
| 無料問題数: | 125 |
| 更新日: | 2026-07-30 |
Given:
class Overloading {
int x(double d) {
System.out.println("one");
return 0;
}
String x(double d) {
System.out.println("two");
return null;
}
double x(double d) {
System.out.println("three");
return 0.0;
}
public static void main(String[] args) {
new Overloading().x(4.0);
}
}
What is the result?
Which set of commands is necessary to create and run a custom runtime image from Java source files?


