11. class Converter { <br /> 12. public static void main(String[] args) { <br /> 13. Integer i = args[0]; <br /> 14. int j = 12; <br /> 15. System.out.println(”It is “ + (j==i) + “that j==i.”); <br /> 16. } <br /> 17. } <br /> What is the result when the programmer attempts to compile the code and run it with the command java Converter 12?() <p> 11. class Converter { <br /> 12. public static void main(String[] args) { <br /> 13. Integer i = args[0]; <br /> 14. int j = 12; <br /> 15. System.out.println(”It is “ + (j==i) + “that j==i.
A、A. It is true that j==i.
B、B. It is false that j==i.
C、C. An exception is thrown at runtime.
D、D. Compilation fails because of an error in line 13.