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 / satish
true
true
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How to check if linked list contains loop in java?
What is data structure in java?
What is cr keyboard?
Write a function to find out longest palindrome in a given string?
What do you mean by object?
What is a locale?
What is the dot operator?
What does replaceall do in java?
What is the difference between member variables initialization and assignment in a constructor?
What is parseint?
What is return data type?
What is the size of arraylist in java?
What is the return type of the main method?
is it possible to instantiate the math class?
Are strings immutable in java?