java
Question 8 In the following code, what will the call to super do? public class ClassB extends ClassA public classB () super (40): system. out.printin (“This is the last statement “. “in the constructor.”) The method super will have to be defined before we can say what will happen This cannot be determined form the above code It will call the constructor of ClassA that receives an integer as an argument It will call the
OR
OR