Multiple choice technology programming languages

------------indexes and stores objects in a dictionary

  1. Vector

  2. Hash table

  3. Linked list

  4. Enumeration

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

Hash tables index and store objects using key-value pairs where keys are hashed to determine storage location, enabling O(1) average lookup, insert, and delete operations. Vectors use sequential indexing, linked lists use node references, and enumerations provide sequential access without direct indexing. Only hash tables provide dictionary-style key-based object storage.