a. private members are always accessible from within the same package.
b. private members can only be accessed by code from within the class of the member
c. package/default accessibility for a member can be declared using the keyword default.
d. private members cannot be accessed at all
Answer:
b. private members can only be accessed by code from within the class of the member
Explanation
A private member of a class is not accessible anywhere outside the class.
If no access modifier has been specified, a member has default accessibility, also known as
package accessibility. Subclass outside the package cannot access members with default
accessibility.