InterviewSolution
Saved Bookmarks
| 1. |
What Is A Protected Method? |
|
Answer» A protected METHOD is a method that can be ACCESSED by any method in its package and INHERITED by any subclass of its CLASS. A protected method is a method that can be accessed by any method in its package and inherited by any subclass of its class. |
|