 
| Search Interview Questions |  More than 3000 questions in repository.  There are more than 900 unanswered questions. Click here and help us by providing the answer.  Have a video suggestion. Click Correct / Improve and please let us know. | 
| 
 | |||
|  | ||||
| Interview Questions and Answers | ||||
| 
 | ||||
| Ans. true false true Just like Strings, java maintains an integer constant pool too. So 1 will be maintained in integer constant pool and hence reference int2 will point to same integer in pool. String pool is only for string literals ( defined by "" ) and not for newly created objects and hence str1 == str2 will return false as they are separate objects in memory. String pool is used for storing string literals so that they can be reused and str3 and str4 will point to same string literal in string pool. | ||||
|  Help us improve. Please let us know the company, where you were asked this question  : | ||||
|  Discuss  Correct / Improve   string pool  integer constant pool  string comparison  integer comparison | ||||
|  Related Questions | ||||
|  What are different ways to create String Object? Explain. | ||||
|  Why Char array is preferred over String for storing password? | ||||
|  What is a String Pool ? | ||||
|  How does making string as immutable helps with securing information ? How does String Pool pose a security threat ? | ||||
|  why string pool concept for only String but not for StringBuffer ? | ||||
|  why string pool concept for only String but not for StringBuffer ? | ||||
|  Which memory segment holds String Pool in Java ? | ||||
|  How and Why Strings are interned in Java ? | ||||
|  What will be the output of following code Integer x = 1; Integer y = 2; System.out.println(x == y); What if you change 1 to "1" and Integer to String? | ||||