What will be the result of compiling and running the following code:<br><pre><code class="java">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"); } }}</code></pre>

Correct Answer: true

Equals() method for the integer wrappers will only return true if the two primitive types and the two values are equal.