Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1.- In what classes can w, x, y and z be accessed? package P; public class A{ int w; public int x; protected int y;
1.- In what classes can w, x, y and z be accessed? package P; public class A{ int w; public int x; protected int y; private int z; } import P*; class C extends A{ } package P; public class B{ } import P.*; class D extends B{ } import P.*; public class E{ } import P.*; class F extends E{ }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started