Question: Which of the following statements are true? public class Main { public Main(int i, float f) { } public Main(float f, int i) { }
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() { } }
| A. A syntax error will occur because void cannot be used with a constructor. |
| B. A syntax error will occur because the first two constructors are not unique. |
| C. The class does not have a default constructor. |
| D. No syntax errors will be generated. |
| E. A and C. |
| F. C and D. |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
