Given: How many MarkList instances are created in memory at runtime?
Correct Answer: A
Only the statement "MarList obj1 = new MarkList();" creates an instance of MarkList.
Question 52
Given a java source file: What changes will make this code compile?
Correct Answer: C
Using the private protected, instead of the private modifier, for the declaration of the one() method, would enable the two() method to access the one() method.