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 applet security manager, and what does it provide?
what is thread? What are the high-level thread states? : Java thread
What is a priority queue java?
Can we call the run() method instead of start()?
What are the default and parameterized constructors?
What do you mean by platform independence?
Why are data types important?
What is a parameter in java?
What is a conditional statement explain with example?
Explain aggregation in java?
What do you mean by multithreaded program?
What is size () in java?
Can we override the static method?
What is variable explain with example?
Can one thread block the other thread?