InterviewSolution
Saved Bookmarks
| 1. |
When process requires more I/O than CPU then it is called |
| Answer» TION: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. | |