Originally posted by Shanel Jacob:
Which is true?
1) The default constructor invokes the no-parameter constructor of the superclass.
true 2) The default constructor initializes the instance variables declared in the class.
false ----------------------------------
K&B1.4 page 334 has the following statement.
1) The default constructor is a no-arg constructor with a no-arg call to super().
true 2) Instance methods and variables are only accessible after the super constructor runs.
true