-
Which of the following statements are incorrect?
-
- private members of class can only be accessed by other members of the class
- public members of class can be accessed by any code in the program
- protected members of a class can be inherited by a subclass, and become private members of the subclass
- private members of class can be inherited by a subclass, and become protected members in subclass
- None of these
Correct Option: D
private members of a class can not be inherited by a subclass.