Answer:
(A) Add.
Step-by-step explanation:
The add method of queue inserts an element at the tail of the queue.
syntax:- queue.add(element);
It's return type is boolean it returns true if the insertion is successful and returns false if the insertion is unsuccessful and it returns an IllegalSpace Exception if there is no space left to insert an element in the queue.