Multiple choice java For a subclass outside the package, the protected member can be accessed through ? Object of super class Inheritance Both None Reveal answer Fill a bubble to check yourself B Correct answer Explanation Protected members in Java are accessible within the same package and through inheritance to subclasses. For a subclass outside the package, the protected member can only be accessed through inheritance (not via a superclass object reference).