What is wrong with the following code? public class ClassB extends ClassA { public ClassB() { int init = 10; super(40); } } Group of answer choices a) The call to the method super must be the first statement in the constructor. b) The method super is not defined. c) No values may be passed to super. d) Nothing is wrong with this code.