Saved Bookmarks
| 1. |
What is use for enqueue(val) in Queue? |
|
Answer» ong>Answer: enqueue : It is used to add an element at the REAR of the queue. dequeue : It is used to remove an element from the front of the queue. ISEMPTY : It is used to CHECK whether the queue is empty or not. IsFull : It is used to check whether the queue is FULL or not. |
|