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

A Yes, If return types are different, signature becomes different
B Yes, because return types can differentiate two functions
C No, return type can't differentiate two functions
D No, constructors doesn't have any return type

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.
Bissoy MCQ

Related Questions

The implicit return type of a constructor is
Which of the following is a heavily overloaded function?
Which of the modifier can't be used for constructors?
PHP recognizes constructors by the name_________
You can invoke class constructors that don’t have any relation to the instantiated object by simply prefacing _constructor with the class name like.

Next steps