OD
(Choose 1 answer)
A. Test t = new Test():
B. Test t = new Test:
C. Test t = new Test(1, 2, 3).
D. Test t = new Test(1);
Consider the following class definition:1. public class Test extends Base {
2 public Test(int j) {
3.
}
456 5.super(j, k);
4.public Test(int j, int k) {
6.7.}}
Which of the following is legal calls to construct instances of the Test class?