Which of these classes compile and use a default constructor? (Choose all that apply)
A, G.
A does not define a constructor and a default constructor is provided.
B and C don't compile because the constructor name must match the classname.
E, and F all compile. Since a constructor is coded, a default constructor isn't supplied.
G defines a method, but not a constructor.