What is wrong with the following code?
public class ClassB extends ClassA
public ClassB()
super (40);
System.out.println(''This is the last statement '' + ''in the constructor.'');


a) Incorrect superclass declaration
b) Missing constructor parameters
c) Missing superclass call
d) Missing semicolon after superclass call