Which access specifier should be used so that all the parent class members can be inherited and accessed from outside the class?

Which access specifier should be used so that all the parent class members can be inherited and accessed from outside the class? Correct Answer Public

All the members must be of public access. So that the members can be inherited easily. Also, the members will be available from outside the class.
Bissoy MCQ

Related Questions

If private members have to be accessed directly from outside the class but the access specifier must not be changed, what should be done?