Question: It is often useful to distinguish between batch and interactive processes, what is their behaviour?
A | Batch processes like to calculate a lot (CPU bound) and interactive processes like to talk a lot (I/O bound) | B | Batch processes do many I/O operations at once and interactive processes do one I/O operation at a time |
C | Batch processes do many calculations at once and interactive processes do one calculation at a time | D | Batch processes like to talk a lot (I/O bound) and interactive processes like to calculate a lot (CPU bound) |