Practice Test 2

Question 1 of 30

What will be the likely output?
01. class Roo {
02.      private static Koo moo = new Koo();
03.      public static void main(String[] args) {
04.            moo.showTime();
05.      }
06. }
07.
08. class Boo {
09.      public void showTime() {
10.            System.out.println("One thing.");
11.      }
12. }
13.
14. class Koo extends Boo {
15.      public void showTime() {
16.            System.out.println("Another thing.");
17.      }
18. }