Hi Friends, Can u give few interview questions which relates
ArrayList and Hashmap. I mean how to link ArrayList and
HashMap.I know this is not good way of asking questions like
this , but i need
Answer / murali,25@gmail.com
HashMap stores key-value pairs. Alternate approach is to have a plain java class with key,value as attributes.
class HashMapAlternate{
Object key;
Object value;
}
You can create objects of HashMapAlternate and store it in arraylist. But HashMap is a better solution because it uses hashing and collision resolution technique which speeds up lookup when number of objects are very large.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is the synonym of procedure?
Objects or references which of them gets garbage collected?
How to display all the prime numbers between 1 and 100
Break statement can be used as labels in java?
Name few java.lang classes introduced with java 8 ?
What is use of functional interface in java 8? Explain
What is a 16 bit word?
What is the return type of the main method?
What do you mean by boolean?
Can a static class implement an interface?
Explain methods specific to list interface?
What is data structure in java?