Computer Science, asked by 911sewminipremadasa, 9 months ago

what is I/O bound processes and processor bound processes?

Answers

Answered by drsagarsingh07
1

Answer:

CPU bound means the program is bottlenecked by the CPU, or central processing unit, while I/O bound means the program is bottlenecked by I/O, or input/output, such as reading or writing to disk, network, etc. In general, when optimizing computer programs, one tries to seek out the bottleneck and eliminate it.

Similar questions