answersLogoWhite

0


Best Answer

Application software

User Avatar

Wiki User

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

Wiki User

11y ago

Spooler

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: A special software to create a job queue is called?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

which special software is used to create a job queue is called?

Spooler


What is a batch queue?

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


What are examples of non-application software?

The process queue in an operating system is software that is not an application


What is circular queue .operations circular queue.?

Queue is difined as a special type of data structure .where elements are inserted one end &elements are deleted same end .The end from where they elements are inserted is called as "Rear end".The end from where elements are deleted is called "Front end". A linear queue is akin to the queue at the post office: it can be envisioned to be linear in space, and limited in space. When a linear queue of finite capacity is full, new arrivals are turned away (elements cannot be added, post office customers walk away). A circular queue behaves just like a normal queue, but is typically implemented in a a structure akin to a circle. The typical behavior is that the circular queue, when full, does not turn new entries away, but makes space by removing the oldest element in the queue. Of course, a queue might also be implemented to be of infinite, or virtually infinite, capacity.


What are the term related to queue?

LIFO is the term related to queue. It is called Last In First Out.


What is queue concpt of emailing system?

The Queue concpt helps you to manage your customers in a more personalized manner. Being one of the best customer queue management software, it enables you to create ticketless smooth waiting process, drive loyalty through fabulous customer experience, and provide friendly user-experience. In addition, it helps you reduce queue length, entertain waiting customers, organize queues, and manage workflow area. https://qwaiting.com


What is people in a line called?

A queue


What is people standing in a line called?

A queue


Where can Java Queue be downloaded?

A 'queue' is a particular kind of data structure that Java is capable of working with. There are no products called "Java Queue" and is thus not something one can download.


How do you create a FIFO collection using Java?

There's a great class called LinkedList that implements the Queue interface. To get an instance of it, use the following code snippet: import java.util.*; Queue queue = new LinkedList<T>(); where T is the type of the objects that will go in the queue. Remember the parentheses, as they drove me crazy during one memorable day working out why exactly that same line, minus the parentheses, kept on throwing me a rather unintelligible error. Example: Queue<String> q = new java.util.LinkedList<String>() q.add("a") q.add("b") q.add("c") Calling q.getFirst() returns the value "a". Likewise, to create a Last-in first out (LIFO) collection, you use a Stack (java.util.Stack).


Enqueue and dequeue in data structures?

The queue insert operation is known is enqueue. A queue has two ends namely REAR & FRONT. After the data has been inserted in a queue ,the new element becomes REAR.The queue deletion operation is known as dequeue. The data at the front of the queue is removed .


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).......