Courseiva
Java Basics and SyntaxmediumMatchingObjective-mapped

1Z0-811 Java Basics and Syntax Practice Question

Match each access modifier to its visibility level.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Accessible from anywhere

Accessible within same package and subclasses

Accessible only within same package

Accessible only within same class

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

private: Visible only within the same class

In Java, access modifiers control visibility: private (class-only), default (package), protected (package + subclasses), public (everywhere). Common mistakes include confusing private with default and protected with private.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • private: Visible only within the same class

    Why this is correct

    Private access restricts visibility to the enclosing class only.

  • default: Visible within the same package

    Why this is correct

    Default (no modifier) access allows visibility within the same package.

  • protected: Visible within the same package and subclasses

    Why this is correct

    Protected access permits visibility in the same package and subclasses.

  • public: Visible from anywhere

    Why this is correct

    Public access grants visibility to all classes.

  • private: Visible within the same package

    Why it's wrong here

    Incorrect — this describes default access, not private.

  • protected: Visible only within the same class

    Why it's wrong here

    Incorrect — this describes private access, not protected.

About these practice questions

Courseiva writes every 1Z0-811 question from scratch — 481 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This 1Z0-811 practice question is part of Courseiva's free Oracle certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the 1Z0-811 exam.