多选题
Given:
2. class Dog {
3. void makeNoise() { System.out.print,("bark ") ; }
4. static void play() { System.out.print("catching ");
5. }
6. class Bloodhound extends Dog {
7. void makeNoise() {System.out.print("howl "); }
8. public static void main(String[] args) {
9. new Bloodhound() .go();
10. super.play();
11. super.makeNoise();
12. }
13. void go() {
14. super.play();
15. makeNoise();
16. super.makeNoise();
17. } }
What is the result? (Choose all that apply.)