Java Programming Language MCQ Java Control Flow
⚠ Report ✓ Question Verified Copy Link
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"); } } }
Learn More MCQ Questions from Java Programming Language MCQ Java Control Flow