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.