answersLogoWhite

0

What queue in computing world?

Updated: 8/16/2019
User Avatar

Wiki User

16y ago

Best Answer

Queue is a datastructure used to store values(its a linear structure).it implements FIFO policy(the element to get in first is the first to get out).Some of the operations that can be performed on Q are put(enqueue) u put elements from the rear end, get(dequeue) where the element is removed from the front end.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What queue in computing world?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When did New World Computing end?

New World Computing was created in 1984.


What is New World Computing's population?

The population of New World Computing is 100.


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 )


Name a common word with 5 consecutive vowels?

queueing [ intrans. ] chiefly Brit.1 take one's place in a queue : in the war they had queued for food | [withinfinitive ] figurative companies are queuing upto move to the bay.2 [ trans. ] Computing arrange in a queue.(nah, likely wrong)


Which queue most efficient queue using array?

circular queue


What is difference between job queue and ready queue?

Ready queue contain all the jobs that are ready to execute.so the job queue and the ready queue are one and the same.


Queue in a sentence?

He added the download to the queue.(Line)I saw a queue in the park(waiting line)


Is World wide Web Cloud computing?

No, the world wide web is the internet browse, which allows you to go on to cloud computing sites such as dropbox.com or box.com


What is linear queue?

What is linear queue


What is the difference between a priority queue and a circular queue?

A circular queue is similar to the normal queue with the difference that queue is circular queue ; that is pointer rear can point to beginning of the queue when it reaches at the end of the queue. A priority queue is a queue in which each element is inserted or deleted on the basis of their priority. A higher priority element is added first before any lower priority element. If in case priority of two element is same then they are added to the queue on FCFS basis (first come first serve).


What is the collective noun for queue?

The noun 'queue' is a collective noun for a 'queue of people'.


What is queue explain the basic element of queue?

The queue is a linear data structure where operations of insertion and deletion are performed at separate ends also known as front and rear. Queue is a FIFO structure that is first in first out. Following are the types of queue: Linear queue Circular queue Priority queue Double ended queue ( or deque )