what is meant by string pooling?
Answer Posted / devarathnam
Hi... Basically string pooling is a part of the heap memory
all string literals will be storing in the string pool
memory.
for example: String s1="DEVARATHNAM";// This is a string
literal ,will store in the string pool .
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
What is a module function?
What does math floor () do?
Can main() method in java can return any data?
What is difference between printf and scanf?
What design pattern you have used in your project? I answered Factory pattern, how it is implemented? What are its advantage? Do know about Abstract Factory?
What data type is string java?
What is google full form?
Difference between linkedlist and arraylist.
Can we have more than one package statement in source file ?
Can we sort set in java?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
Can I extend singleton class in java?
what do you mean by classloader in java?
Explain an algorithm to find depth of a binary tree.
What is the use of 'super' keyword inside a constructor?