Consider the following class: 1. class Test { 2. char i; 3. 4. Test() { 5. i = 'C'; 6. } 7. 8. Test(char i) { 9. this.i = i; 10. } 11. 12. void test(int i) { 13. System.out.println("I am an int " + i); 14. } 15. 16. void test(String s) { 17. System.out.println("I am a string." + i); 18. } 19. 20. public static void main(String arg[]) { 21. Test t = new Test('A'); 22. t.test('B'); 23. } 24. } Which of the following statements is true?