Class B extends A. B overrides the doStuff method from A. Which methods get called if you say:
a myA = new B();
myA.doStuff();"
A) A's doStuff method
B) B's doStuff method
C) Both A's and B's doStuff methods
D) It will result in a compilation error