Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Management With Website Development Applications

Authors: Greg Riccardi

1st Edition

0201743876, 978-0201743876

More Books

Students also viewed these Databases questions

Question

Draw the CAD system architecture

Answered: 1 week ago

Question

What is DDL?

Answered: 1 week ago