Saved Bookmarks
| 1. |
What is Queue? what is Queue? |
|
Answer» Answer: A Queue is a LINEAR structure which follows a particular ORDER in which the operations are PERFORMED. The order is First In First Out (FIFO). A good example of a queue is any queue of consumers for a resource where the consumer that CAME first is served first. The difference between STACKS and queues is in removing. |
|