Why do we need to call super class constructor before subclass object being initialized in Java?

Why do we need to call super class constructor before subclass object being initialized in Java?

In Java, the parent class object must be initialized before the child class object because the child class object inherits the properties and methods of the parent class, and the child class object cannot be fully initialized without the parent class object being initialized first. This is to ensure that sub-class object can have access to all the properties and behaviors.