Question: Consider the following partial class definitions: public class A 1 { public int x; private int y; protected int z; . . . } public
Consider the following partial class definitions:
public class A
public int x;
private int y;
protected int z;
public class A extends A
protected int a;
private int b;
public class A extends A
private int q;
Which of the following is true regarding the use of instance data y of class A
Group of answer choices
It is accessible in A A and A
It is accessible in A and A
It is accessible only in A
It is accessible only in A
It is not accessible to any of the three classes
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
