Problem Statement
What does a default constructor refer to?
Explanation
If you don’t define any constructor in many languages (for example Java or C++), the compiler supplies a default no-argument constructor. It allows object creation without supplying parameters.
