MCQs City stays free thanks to ads. Please turn off your ad blocker for this site so content and features keep working.
Computer Programming MCQs
Java concepts and its programming
Q
Suppose a class has public visibility. In this class we define a protected method. Which of the following statements is correct ?
AA. From within protected methods you do not have access to public methods.
BB. This method is only accessible from inside the class itself and from inside all subclasses.
CC. In a class, you cannot declare methods with a lower visibility than the visibility of the class in which it is defined.
DD. This method is accessible from within the class itself and from within all classes defined in the same package as the class itself.
Correct Answer:
D. D. This method is accessible from within the class itself and from within all classes defined in the same package as the class itself.