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);
}
}
Answers were Sorted based on User's Feedback
Answer / seven hills
true
false
because the value of Integer object should not be greater than 127...if u put<127 then always true
Is This Answer Correct ? | 23 Yes | 1 No |
Answer / prashanth
true
false
The Buffer size of Integer class is -128 to 127
Except this range in all remaining cases a new object will be created.
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / ashish
A list of few more java interview questions like
1. By default, Java is pass by reference or pass by value. how it handles it.
2. In which scenario, you will use custom exceptions in java.
3. how garbage collection works in java
4. what is autoboxing and unboxing in java
5. how hashmap works in java
For more questions:
<a href="http://newtechnobuzzz.blogspot.com/2014/07/tricky-java-interview-questions-and.html">Check more information on java interview questions and tutorials</a>
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravi
using "Singletone Design pattern" we can prevent class creating multiple objects.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sonalgusain99@gmail.com
1.true,true
2.false,true
3.true,false
plz also gv explanation
Is This Answer Correct ? | 3 Yes | 6 No |
What is a layout manager?
what is language and it responsibilities
Can a class be declared as static?
What are access specifiers in java ?
0 Answers Akamai Technologies,
What is the difference between arraylist and hashset in java?
Write down program for following scenario. Use java coding standard. You have array list with some words in it..we will call it as dictionary….and you have a arbitrary string containing some chars in it. You have to go through each word of dictionary and find out if that word can be constructed with the help of chars from arbitrary string given. If you find the word print it else print none.
How many bits is a word?
Is it possible for yielded thread to get chance for its execution again ?
What is preparedstatement in java?
What does int argc char * argv [] mean?
Is final static java?
How an object is serialized in java?