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