Right choice is (d) More than one constructors with all default arguments can’t exist in same class
For explanation: The constructors must have different argument list. Along that, if all the arguments are default arguments, there can’t be more than once constructor like that in the same class as that will create ambiguity while constructors are being called.