Multiple choice Which of the following statements is correct for methods in the queue? Peek() method retrieves and removes the head of the queue and returns null if the queue is empty. Peek() method retrieves and removes the head of the queue and returns nothing if the queue is empty. Peek() method retrieves but doesn’t remove the head of the queue and returns null if the queue is empty. Peek() method retrieves and removes the head of the queue and throws exception if the queue is empty. Peek() method retrieves but doesn’t remove the head of the queue and throws exception if the queue is empty. Reveal answer Fill a bubble to check yourself C Correct answer Explanation This is the correct answer because peek() method retrieves but doesn’t remove the head of the queue and returns null if the queue is empty. So, this is the correct answer.