Hashtables
Data structureJava: Hashmap (Hashtable class is deprecated).
C#: Dictionary (Hashtable class is deprecated too).
/!\ A hash table does not guarantee that the order will remain constant over time.
Hashmap in Java
final Map<String, String> myLookupTable…