

MCQOPTIONS
Saved Bookmarks
1. |
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");}}} |
A. | rue |
B. | alse |
C. | ompiler error |
D. | one of these |
Answer» B. alse | |