Given the following code, 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 line is a method that happens to have the same name as the constructor.
As there are constructors defined but no default constructor, the class has no default constructor.