What are the implications of not calling super() in a derived class constructor?

  • It has no implications
  • It results in a syntax error
  • It prevents the derived class from inheriting properties and methods
  • It leads to a runtime error
Omitting 'super()' in a derived class constructor prevents proper initialization of the object and may lead to unexpected behavior, as the parent class constructor is not invoked. This can cause issues in inheriting properties and setting up the object's state correctly.
Add your answer
Loading...

Leave a comment

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