Which of the following statements are true?
public class Main { public Main(int i, float f) { } public Main(float f, int i) { } public Main(float f) { } public void Main() { } }
C and D
The last Main method happens to have the same name as the constructor.
The class has no default constructor.