A. What can be included in a class?
B. Objects are _______ of a class, created by calling ____________.
C. What are static members of a class?
D. What are instance members of a class?
E. What are the scopes of a variable of a method? What is a local variable?
F. What can a subclass inherit from a parent class?
G. What are the difference between this and super?
H. Can a subclass object call a private method in parent class? Can a parent class object call a private method in subclass?
I. Can a subclass constructor call a parent class constructor? Can a parent class call a subclass constructor?
J. Is it possible that overloaded methods belong to different classes? Is it possible that overridden methods belong to the same class?
K. When passing parameters, which are formal parameters which are actual parameters?
L. How are actual parameters passed to formal parameters if they are primitive types?
M. How are actual parameters passed to formal parameters if they are objects? (passing by values and passing by references)
Challenge of the week: All multiple choice questions after Chapter 3 of Barron's AP CS A