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