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 |
How to set the Heap size in Java ?
What does it mean to flush a file?
Consider that class classA, abstract class classB, and final classC have been defined.Which one of the following is correct? 1. classA extends classC implements classB 2. class A extends classB, classC 3. classA extends classB 4. classB implements classC
What are the differences between throw and throws?
What is java and its types?
What is an array length?
What is the use of callablestatement?
explain me with a code snippet about the generation and handling of null point exceptions.
What is the function of log?
What is the format specifier?
What is the diff. b/w Interfaces & Abstract class?
What does exp mean in math?