Q. How can you make a method accessible only within its own class and by inheriting classes?
β
Correct Answer: (C)
protected
Explanation: Protected methods are accessible within the class and by classes derived from it.