OD
(Choose 2 answers)
Consider the following class definition:1.
public class Test extends Base {
public Test(int j) {
}
public Test(int j, int k) {
23456 3.4.56.
. super(j, k);
}
7.1 Which of the following forms of constructor must exist explicitly in the definition of the Base c 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) {}
9