answersLogoWhite

0


Best Answer

It's very similar to real-world queues. Queues can be used for various purposes. For example if there are multiple tasks that are waiting to be executed, then they will wait in a queue for their turn to come. Another use is when some resource (say your printer) is needed by various tasks for their successful and complete execution. These tasks will then wait in the queue for their turn as each task in front of them uses and releases the printer and then exits the queue.

Basically a queue is a First In First Out (FIFO) structure. This means, that like real-world queues, the first task to enter the queue will be the first to execute or obtain its required resources. Any other tasks that come after it are added to the rear end of the queue and from there they move to the front of the queue one-by-one as their turn comes up.

Hope that helps.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

guyghmjh

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the queue concept in computer system?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the use of queue?

The queue is the the concept involved in Algorithms where you use stack, queue and lists to store the different data items e.g people waiting for the bus at bus stop the first in queue will enter first this is called FIFO (first in first out).......


Define the concept bounties?

to protect unathorised access to someones computer system


Discuss the popularity of operating system?

An operating system is a necessary concept of using a modern computer. It is not a matter of "popularity."


What is a batch queue?

A batch queue is a system software data structure maintained by job scheduler software.


What is a set having no elements or members?

An empty set is called a null set. Testing whether a set (or a list, stack, queue) is empty or NULL is an essential concept in both number theory and computer science.


What is the purpose of a queue system?

The purpose of a queue system is quite simple - it allows and maintains order in any situation where there is more than one person waiting for a service.


What is The concept of a System?

What is the concept of a system.


What is a queue management system used for?

A queue management system is used for managing queues in queueing areas, such as, in cinemas, retail stores, hospitals, embassies and transportation stations. Queue management system helps to reduce the time used in queueing,especially with the use of ticket.


Explain the concept of computer report in Management Information System of production unit of an organisation.?

There are several computer application in management information system. These are application systems that aids the management in decision making. Example of which are: business intelligence system,...


Where could one get a queue management system?

People who are looking for a queue management system could try to contact companies like Supalocal or AKIS Technologies. In the end there are lots of vendors selling this products.


What is a queue computer data structure?

A queue is a data structure that allows adding elements at one end (the tail of the queue), and removing them from the other end (the head).Adding at the tail is sometimes called enqueueing, and removing from the head is dequeueing.Inserting or removing elements at other places is not permitted.There may also be operations to examine the element at the head of the queue without removing it (peeking), and to find out how many elements there are in the queue.


What are types of Queue?

Queue is a data structure which is based on FIFO that is first in first out. Following are the types of queue: Linear queue Circular queue Priority queue Double ended queue ( or deque )