Loading practice questions
Which member can never be accessed by inherited classes?
Correct Answer: A — Private member function
Explanation:
The private member functions can never be accessed in the derived classes. The access specifiers is of maximum security that allows only the members of self class to access the private member functions.