Multiple choice Which of the following methods is not present in Map interface? putAll(map : m) Get(key : K) isEmpty() removeLast() put(Key : K, Value : V) Reveal answer Fill a bubble to check yourself D Correct answer Explanation This is the correct choice because removeLast() method is not present in the Map interface. It is present in LinkedList class. This method removes the last element from the list.