Differentiate Vector and ArrayList?
Answer Posted / v.kannan
Vector is synchronized where as
Arraylist is not synchronized.
In Array List there is no guarantee elements will be in
order(It will vary System to System)
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
Is void a wrapper class?
Can classes declared using the abstract keyword cab be instantiated?
What is externalizable interface?
What is a type parameter in java?
What is private static class in java?
Is null == null in java?
What access modifiers can be used for variables?
How to find the given number is a prime number or not by getting input from the user
How do generics work in java?
How do you convert bytes to character in java?
can java object be locked down for exclusive use by a given thread? Or what happens when a thread cannot acquire a lock on an object? : Java thread
In Java list the methods that can be overridden?
What do you understand by the term wrapper classes?
Why is string builder not thread safe?
What is the static keyword?