Multiple Choices
Answer (Choose 2 answers)
Consider the following class definition:
1. public class Test extends Base {
public Test(int j) {
}
234567
public Test(int j, int k) {
super(j, k);
}
7.}
Which of the following forms of constructor must exist explicitly in the definition of the Base class? Assume Test and Base are in the same package. (Select two)
A. Base() {}
B. Base(int j) {}
C. Base(int j, int k) {}
D. Base(int j, int k, int I) {}