What is the significance of the protected access modifier in Java?
protected
class Book { protected String title; }
title can be accessed globally
title
title is private to Book class
title is a static member accessible by class name
title can be accessed by any class in the same package and subclasses