Score:

38/40 score

Q2

q2

Original Answer: int x = SomeClass.getA ( );

Correct Answer: int x = obj.getA ( );

The object instance is named obj, SomeClass is the name of the class, thus you would do obj.getA() because you are getting the value from the specific object.

Q4

q4

Original Answer: Value is: 2.3333333

Correct Answer: Value is: 2

This is the correct answer because / performs integer division, which is why the answer 2.33 gets rounded down to just 2.