Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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