The super() method is used to ___

33. The super() method is used to ___.

  1. Call constructor of friend class
  2. Is a declared method
  3. Call constructor of the parent class
  4. Call constructor

Answer: C) Call constructor of the parent class

Explanation:

In Java programming language, the super() is a reference variable that is used to refer parent class constructors. The super can be used to call parent class's variables and methods. The super() can be used to call parent class' constructors only.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.