Home / Java Programming / Declarations and Access Control :: Discussion

Discussion :: Declarations and Access Control

  1. What is the most restrictive access modifier that will allow members of one class to have access to members of another class in the same package?

  2. A.
    public
    B.
    abstract
    C.
    protected
    D.
    synchronized
    E.
    default access

    View Answer

    Workspace

    Answer : Option E

    Explanation :

    default access is the "package oriented" access modifier.

    Option A and C are wrong because public and protected are less restrictive. Option B and D are wrong because abstract and synchronized are not access modifiers.


Be The First To Comment