1Z0-853 試験問題を無料オンラインアクセス
試験コード: | 1Z0-853 |
試験名称: | Java Standard Edition 5 Programmer Certified Professional Exam |
認定資格: | Oracle |
無料問題数: | 362 |
更新日: | 2025-09-08 |
Given:
11.
public class Commander {
12.
public static void main(String[] args) {
13.
String myProp = /* insert code here */
14.
System.out.println(myProp);
15.
}
16.
}
and the command line:
java -Dprop.custom=gobstopper Commander
Which two, placed on line 13, will produce the output gobstopper? (Choose two.)
A developer is creating a class Book, that needs to access class Paper. The Paper class is
deployed in a JAR named myLib.jar. Which three, taken independently, will allow the developer to use the Paper class while compiling the Book class? (Choose three.)
Given
11.
public interface Status {
12.
/* insert code here */ int MY_VALUE = 10;
13.
}
Which three are valid on line 12? (Choose three.)