Question
Use the following code to answer the question: public class ClassA { public String fieldX; public String fieldY; private int fieldZ; public ClassA() { System.out.println(Class
Use the following code to answer the question: public class ClassA { public String fieldX; public String fieldY; private int fieldZ; public ClassA() { System.out.println("Class A"); } private void method1() { ... } public int method2() { ... } } public class ClassB extends ClassA { private String fieldA; private String fieldB; public ClassB() { System.out.println("Class B"); } public void method3() { ... } } ClassA objA = new ClassA(); ClassB objB = new ClassB(); What class members of ClassB does objA inherit? (Select all the items that would be directly accessed from the objA variable) | ||||
|
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