Question: Given a code segment as the below, which of the following instance variable are directly accessible within class A3? public class A1 { private int
Given a code segment as the below, which of the following instance variable are directly accessible within class A3?
public class A1 { private int x protected int y; } public class A2 extends A1 { protected int a; private int b; } public class A3 extends A2 { private int q; } | q and a |
| q |
| q, a, and y |
| a and y |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
