Engineering Full Stack Apps with Java and JavaScript
Which of the following can be used as a constructor for the class given below?
public class TestClass{
   // lots of code ...
}
Select 2 options
A. public void TestClass() {...}
B. public TestClass() {...}
C. public static TestClass() {...} 
D. public final TestClass() {...}
E. public TestClass(int x) { ...}