Multiple choice technology programming languages

Which of the following can be used to store items(name/value pairs) implemented as strongly typed strings?

  1. Hashtable.

  2. ListDictionary.

  3. Hybrid Dictionary.

  4. NameValueCollection.

  5. StringDictionary.

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

StringDictionary is specifically designed to store name/value pairs where both keys and values are strongly typed as strings. It provides a type-safe string-to-string mapping. Hashtable and ListDictionary are not strongly typed (they store objects), HybridDictionary switches between the two, and NameValueCollection allows multiple values per key.