Does constructor overloading include different return types for constructors to be overloaded?

Does constructor overloading include different return types for constructors to be overloaded? Correct Answer No, constructors doesn’t have any return type

The constructors doesn’t have any return type. When we can’t have return type of a constructor, overloading based on the return type is not possible. Hence only parameters can be different.

Related Questions

Does constructor overloading include different return types for constructors to be overloaded ?
If constructor arguments are passed to objects of array then ____________ if the constructors are overloaded.
For constructor overloading, each constructor must differ in ___________ and __________
In method overloading, can methods have the same name and the same parameter types if their return types are different?
In method overloading, what must be different between the overloaded methods in the same class?