Question: Consider the following two classes: public class A{ public int method1(int x){ return 2; } } public class B extends A{ } Which of the

Consider the following two classes:

public class A{

public int method1(int x){

return 2;

}

}

public class B extends A{

}

Which of the following could be the signature of a method in class B that correctly overloads method1() in class A?

(A) public int method1(String x)

(B) public int method1(int y)

(C) private int method1(int x)

(D) public int method2(String x)

(E) public int method2(int y)

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!