JAVA Flow Control
What will be the result of compiling and runnig the following code:public class Test{ public static void main(String... args) throws Exception{ Integer i = 34; int l = 34; if(i.equals(l)){ System.out.println("true"); }else{ System.out.println("false"); } }}

None of these
Compiler error
true
false

ANSWER DOWNLOAD EXAMIANS APP