Encapsulation, Inheritance, Casting & Access Modifiers

Question 1 of 17

Given the following, what is the likely output?

01. class A {
02. static void method( ) {
03. System.out.print("It's me A . ");
04. }
05. }
06.
07. class B extends A {
08. static void method( ) {
09. System.out.print("It's me B . ");
10. }
11. }
12.
13. class Test {
14. public static void main(String[ ] args) {
15. A x = new A( );
16. x . method( );
17. A y = new B( );
18. y . method( );
19. }
20. }