Home / C# Programming / Collection Classes :: Discussion

Discussion :: Collection Classes

  1. Which of the following statements are correct about an ArrayList collection that implements the IEnumerable interface?

    1. The ArrayList class contains an inner class that implements the IEnumerator interface.
    2. An ArrayList Collection cannot be accessed simultaneously by different threads.
    3. The inner class of ArrayList can access ArrayList class's members.
    4. To access members of ArrayList from the inner class, it is necessary to pass ArrayList class's reference to it.
    5. Enumerator's of ArrayList Collection can manipulate the array.

  2. A.
    1 and 2 only
    B.
    1 and 3 and 4 only
    C.
    2 and 5 only
    D.
    All of the above
    E.
    None of the above

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment