Declarations and Access Control Logic
© examsiri.com
Question : 11 of 29
Marks:
+1,
-0
Given:
What is the result when the programmer attempts to compile the code and run it with the command java Converter 12?
1. class Converter {
2.   public static void main(String[] args) {
3.    Integer i = args[0];
4.    int j = 12;
5.    System.out.println("It is " + (j==i) + " that j==i.");
6.   }
7. }What is the result when the programmer attempts to compile the code and run it with the command java Converter 12?
Go to Question: