Multiple choice What does the access modifier "private" mean? Only its own class can access it Any class can access it Only its package can access it Only its subclasses can access it Reveal answer Fill a bubble to check yourself A Correct answer Explanation The 'private' access modifier restricts visibility so that the member can only be accessed within the class where it is declared.