Multiple choice Which of the following statements is true for methods in queue in Java Collections? Element() method retrieves and removes the head of the queue and returns Null if the queue is empty. Element() method retrieves, but doesn’t remove the head of the queue and returns Null if the queue is empty. Element() method retrieves and removes the head of the queue and throws exception if the queue is empty. Element() method retrieves, but doesn’t remove the head of the queue and throws exception if the queue is empty. Element() method removes the head of the queue and throws exception if the queue is empty. Reveal answer Fill a bubble to check yourself D Correct answer Explanation This is the correct answer.