If a class extends another class, the constructor of the child class must call _______ to access the parent's properties.

  • super()
  • parent()
  • this()
  • extend()
If a class extends another class, the constructor of the child class must call super() to access the parent's properties. The super() function is used to invoke the constructor of the parent class, ensuring that the parent's properties are initialized correctly.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *