List interface?
Answers were Sorted based on User's Feedback
Answer / ravichandra
list inteface can have three types are 1.linkedlist
2.arraylist 3.vector
1.arraylist:It is dynamically growing array that stores
objects.It is not synchronized.
ex:-
ArrayList arl = new ArrayList();
2.Vector:-It is dynamically growing array that stores
objects.It is synchronized.
EX:-
Vector v= new Vector();
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ravikiran(aptech mumbai)
List interface provides classes and interfaces to save the
objects incliding duplicates.
| Is This Answer Correct ? | 0 Yes | 2 No |
Linked List reverese program
what is an object and how do you allocate memory to it?
we have two threads..both the threads are reading the data.. is there any need of synchronization there?...justify it?
What is a boolean output?
Why are variables important in research?
Where to store local variables?
what is the difference between future and callable interface in java?
How to print nodes of a Binary tree?
Can we catch more than one exception in single catch block?
What is the base class for error and exception?
What is the difference between delete and delete[]
Can we convert stringbuffer to string?