1z1-815試験無料問題集「Oracle Java SE 11 Programmer I 認定」

Which statement about access modifiers is correct?

解説: (GoShiken メンバーにのみ表示されます)
Given:

If file "App.config" is not found, what is the result?

解説: (GoShiken メンバーにのみ表示されます)
What is the result?
Class StaticField {
static int i = 7;
public static void main(String[] args) {
StaticFied obj = new StaticField();
obj.i++;
StaticField.i++;
obj.i++;
System.out.println(StaticField.i + " "+ obj.i);
}
}

Given:

What is the result?

解説: (GoShiken メンバーにのみ表示されます)
Given the code fragment:

What is the result?

解説: (GoShiken メンバーにのみ表示されます)
Given:

What must be added in line 1 to compile this class?

Given:

What is the type of x?

Given:

What is the result?

解説: (GoShiken メンバーにのみ表示されます)
Given:

Which two method implementations are correct, when inserted independently in line 1? (Choose two.)

Which two describe reasons to modularize the JDK? (Choose two.)