Which statement is true about the accessibility of members?.
Select the one correct answer.
(b)
A private member is only accessible within the class of the member.
If no accessibility modifier has been specified for a member, the member has default accessibility, also known as package accessibility.
The keyword default is not an accessibility modifier, and its only use is as a label in a switch statement.
A member with package accessibility is only accessible from classes in the same package.
Subclasses in other packages cannot access a member with default accessibility.