Assuming that public class b : a { public b(int i) :base(i) { } } compiles and runs correctly, what can we conclude about the constructors in the class a?

A. One constructor takes an argument of type i
B. There is only a default constructor
C. One constructor takes an arguments of the type int
D. False
View Answer

B. There is only a default constructor