public class Test
{
public static void main(String ar[])
{
Integer a = 10;
Integer b =10;
Integer c = 145;
Integer d = 145;
System.out.println(a==b);
System.out.println(c==d);
}
}
Answer Posted / ravindra
true
true
Is This Answer Correct ? | 1 Yes | 9 No |
Post New Answer View All Answers
what is the swingutilities.invokelater(runnable) method for? : Java thread
What is a java applet? What is an interface?
What are the important methods of java exception class?
What is an error in java?
How are java objects passed to a method and what are native methods?
Explain the inheritance?
Can we clone singleton class in java?
Why we go for collections in java?
State the merge-sort principle and its time complexity.
What is generic type?
What is rule of accessibility in java?
What is general methodology?
What is the main use of generics in java?
Is Java a dying language?
Which class is the superclass for all the classes?