Home / Java Programming / Objects and Collections :: Discussion

Discussion :: Objects and Collections

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

  2. A.
    java.util.HashSet
    B.
    java.util.LinkedHashSet
    C.
    java.util.List
    D.
    java.util.ArrayList

    View Answer

    Workspace

    Answer : Option D

    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.


Be The First To Comment