Multiple choice technology programming languages

------------provides the capability to implement a growable array of objects

  1. Vector

  2. Hash table

  3. Linked list

  4. Enumeration

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Vector is a legacy collection class that implements a growable array of objects. Unlike standard arrays, Vector can dynamically resize itself when elements are added. HashTable stores key-value pairs, LinkedList is a linked list implementation, and Enumeration is an interface for traversing collections.