Introduction
Maps stores key/value pairs, where each key has an associated value. Given a particular key, the map can look up the associated value very quickly.
Maps, also known as associate array, is an object that stores the data in form of keys and values. In Java, maps are represented using Ma...