Home » Java Programming » Objects and Collections

Which collection class allows you to grow or shrink its size and provides indexed access to its elements, but whose methods are not synchronized?

Correct Answer: java.util.ArrayList

Explanation:

All of the collection classes allow you to grow or shrink the size of your collection. ArrayList provides an index to its elements. The newer collection classes tend not to have synchronized methods. Vector is an older implementation of ArrayList functionality and has synchronized methods; it is slower than ArrayList.

← Previous Question Next Question→

More Questions from Objects and Collections

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion