A default constructor is a 0 argument constructor which contains a no-argument call to the super class constructor . To assign default values to the newly created objects is the main responsibility of default constructor.
Read moreWhat is a default constructor where is it used?
The default constructor is used to provide the default values to the object like 0, null, etc., depending on the type .
Read more