Question: class x { x () {} private void one () {} } public class Y extends x { Y() {} private void two () {

class x {

x () {}

private void one () {}

}

public class Y extends x {

Y() {}

private void two () {

one();

}

public static void main (String[] args) {

new Y().two();

}

}

What changes will make this code compile?

a. Adding the public modifier to the declaration of class x

b. Adding the protected modifier to the x() constructor

c. Changing the private modifier on the declaration of the one() method to protected

d. Removing the Y() constructor

e. Removing the private modifier from the two() method

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!