How can you resolve a processor bottleneck?
What will be an ideal response?
To resolve a processor bottleneck:
* Change to a faster processor-Processor performance is traditionally measured by clock speed. When comparing processors with the same architecture, a processor with a higher clock speed can perform more work in a given time frame.
* Add additional processors-Some computers are capable of containing multiple physical processors. Windows 7 supports up to two physical processors. Having multiple processors means that tasks can be completed more quickly, because the server can work on two tasks at the same time. Be aware that two processors are not twice as fast as a single processor, because some inefficiency is introduced when the system coordinates the activity of two processors.
* Change to a multicore processor-Many processors are now multicore, which effectively means there are multiple processors on a single chip. A dual-core processor increases processing capacity and reduces memory consumption versus simply adding a faster processor.
You might also like to view...
The Hyper-V role-based configuration occurs when Hyper-V is installed as a standalone server product that does not require an installation of Windows Server
Indicate whether the statement is true or false
The second and third parameters are passed by reference
assume that class Matrix refers to the correctly completed class of #1 and that product is a friend of class Matrix. Here is product's prototype: Function product will store in its first parameter the matrix product of its second and third parameters. ``` void product( Matrix&, const Matrix&, const Matrix& ); ``` a. because they are output parameters. b. for efficiency, not because any change is intended. c. because objects cannot be passed by value. d. because the programmer has made an error.