Which components would be considered an "active" CPU cooling technology?
A) Heat sink
B) Additional case fans
C) Thermal paste/heat sink and processor fan
D) CPU fan monitoring and internal temperature monitoring
C
You might also like to view...
A network administrator is replacing old switches to support a VoIP deployment. Based on this parameter, which of the following is MOST likely to be implemented on these new switches?
A. PoE B. STP C. NAT D. VTP
The following program has been partitioned into two files. Before we commented out the keyword namespace and the curly braces that were around func(int) this program compiled and had this output:
```
func(5) = 25
junk(5) = 75
```
Will the code compile now? If so, predict the output and explain.
```
// This goes in file A.cpp
//namespace //
//{
int func(int i)
{
return i*3;
}
//}
int junk (int i)
{
return i*func(i);
}
// This goes in file B.cpp
#include