Given:

What is the result?
Given:

What is the result?
Given:

Which two changes need to be made to make this class compile? (Choose two.)
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:

Which loop incurs a compile time error?
Which two statements are correct about modules in Java? (Choose two.)
Given:

Which two lines cause compilation errors? (Choose two.)