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
Get step-by-step solutions from verified subject matter experts
