There are two classes named classA and classB. Both classes are in the same package. Can a private member of classA can be accessed by an object of classB?
- No, a private member of `classA` cannot be accessed directly by an object of `classB`. Private members are accessible only within the same class.