How restrictive is the default accessibility compared to public, protected, and private accessibility?
Select the one correct answer.
(c)
The default accessibility for members is more restrictive than protected accessibility, but less restrictive than private.
Members with default accessibility are only accessible within the class itself and from classes in the same package.
Protected members are, in addition, accessible from subclasses anywhere.
Members with private accessibility are only accessible within the class itself.