Saved Bookmarks
| 1. |
Which order queue follows |
|
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. |
|