This test contains 10 questions based on Internal Working of the HashMap . Each question answered correctly awards you 1 point and each incorrect answer has a penalty of -0.25 points, no points are deducted for unattempted answers. Select Test Type Timed Test UnTimed Test You Get +1 for each correct answer and -0.25 for each incorrect answer Time Left - minutes : seconds How are key values stored in a hashmap ? as Entry object as a LinkedList as an ArrayList None of these A All the objects in the form of a key-value pair are stored as an Entry object. What is the initial size of a HashMap when we create an object of a HashMap ? 0 8 16 None of these C When we create a HashMap like "HashMap map = new HashMap ();" , it creates an empty hashmap of initial size of 16...