Answer (Choose 2 answers)
Consider the following class definition:
1. public class Test extends Base {
2 public Test(int j) {
3.}
4.public Test(int j, int k) {
4567 6.7.}
5. super(j, k);}
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) {}
El 10