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 are the 7 types of characters?
Explain different types of thread priorities ?
What is java beans?
What is a "pure virtual" member function?
Why can't we override private static methods?
What do you mean by buffering?
What is static block?
Can a hashset contain duplicates java?
Explain wait() method of object class ?
How many bits are used to represent unicode, ascii, utf-16, and utf-8 characters?
How to stop a thread in java? Explain about sleep () method in a thread?
Why do we need singleton class?
Describe the Big-O Notation.
what are the high-level thread states? : Java thread
What is the concatenation operator in java?