Multiple choice Which of the following methods is present in LinkedList class in Java Collections? addFirst() setFirst() setLast() indexOf(e:Element) lastIndexOf(e:element) Reveal answer Fill a bubble to check yourself A Correct answer Explanation This is the correct answer. addFirst() method is used to add the element to the head of the list which is specified in its parameter and this method is present in LinkedList class. So, this is the correct choice.