What is meant by the term spooling? Give an example of when it can be used.

Spooling refers to the use of a temporary storage area, a buffer held in memory for a peripheral device to access when it's ready to process the instruction. This is because devices access data at different speeds. Job references are stored in the spool queue, according to priorities. This technique allows slower devices to interact with faster ones; an example is when data is stored to a disk drive when printing. The CPU is much faster than the printer so references are stored in a queue.

ZN

Related Computing A Level answers

All answers ▸

Show how the decimal number -183 would be represented as an 8-bit two's complement arithmetic


Choose 3 types of malware, describe them and the ways in which they may harm a device.


Project Euler Question 3: What is the largest prime factor of the number 600851475143?


Given an ordered array of integers "V" and a integer "Sum", write a function that would return "true" if it finds two numbers in V that add up to Sum, and "false" otherwise.