Answer Posted / 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 |
Post New Answer View All Answers
What is a pattern what is an anti pattern?
Explain java coding standards for constants?
Difference between java and javascript
What are the 8 data types in java?
What is function and its uses?
How does the garbage collector works in java?
What do you understand by classes in java?
What is the major advantage of external iteration over internal iteration?
What is tree node in java?
What are the important features of Java 8 release?
take an array with -ve and +ve value both.find out the nearest value of 0(zero).if two values are same like(-2 and +2)then extract +2 is nearest of 0(zero).
How do you remove duplicates from an array in java?
What is a java string?
Can we use this () and super () in a method?
What are namespaces in java?