Can a subclass access private members of its superclass in Java?
No, a subclass cannot access private members of its superclass in Java. Private members of a class are only accessible within the class and are not inherited by subclasses.