• 2022-06-06
    What is the effect of the following line of code super()
    A: The method that is overridden by the current method is called.
    B: The parent class’s constructor is called.
    C: The current class’s constructor is called.
    D: The child class’s constructor is called
    E: The current method is recursively called.