Loading practice questions
Private member functions ____________
Correct Answer: B — Can’t be called from enclosing class
Explanation:
The nested class members can’t be accessed in the enclosed class even though other members can be accessed. This is to ensure the class members security and not to go against the rules of private members.