If a constructor is defined in protected access, then?

If a constructor is defined in protected access, then? Correct Answer It’s instance can be created inside the subclasses

The instances will be allowed to be created only inside the sub classes. This is because the protected members will be inherited and hence the constructor too. This will allow the subclasses to call the constructor whenever an object is created.

Related Questions

If a class have default constructor defined in private access, and one parameter constructor in protected mode, how will it be possible to create instance of object?