Advertisements
Advertisements
Question
A target does not have access to the private members of base class.
Options
True
False
MCQ
True or False
Solution
This statement is True.
Explanation:
- No other class, even the derived class (target class), can directly access private members of a base class.
- In Java, private members are only available within the class where they are specified. Even if a class is inherited, the derived class cannot access the base class's private members.
shaalaa.com
Is there an error in this question or solution?