answersLogoWhite

0

The T-series has a "Thermal Design Power" (TDP) of 35W, while the P-series has a TDP of 25W. TDP represents a maximum amount of cooling that a computer manufacturer must design the laptop's cooling system to dissipate X amount of heat. Therefore, a laptop with P-series of processor can - in theory - be designed to dissipate 10 less watt. What does that mean to the end user? The manufacturer can use a smaller, quieter fan/heatsink, yet the laptop's CPU can still operate within specification. I want to emphasis "in theory" is because Intel defines that TDP as "The maximum amount of heat which ...processor will operate under normal operating conditions." Which means at the CPU is running at 100% constantly, the CPU will likely output an amount of heat higher than TDP. So the computer manufacturers may not want to cheapen out their heatsinks/fans even if they are using a "P" rather than a "T". (On the other hand, AMD defines TDP to be the maximum power a CPU will draw [under standard clock rate, of course], so for an AMD CPU, it won't draw any higher than the listed TDP at the rated clock. )

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is the difference between a P and T Intel processor?

The new "P" prefix indicates a lower power processor, with a 25 instead of 35W TDP.


What is the difference between T and Q processor?

One is number based


Htc hd2 and htc hd2 t9193 what's the difference?

The difference is that the Htc Hd2 is for T mobile and it has a snapdragon processor, and the t9193 is unlocked even when you bought it new and it does not have a fast processor like the T mobile one


What is the difference between phase and frequency?

No matter what frequency, there are 360 degrees that can be associated with it (the phase). Here's an equation to summarize: V(t) = A sin ([w*t] + p) A is amplitude w = frequency p = phase shift


What is difference between as and at tires?

difference between a/s and a/t tires


Which processor is the best Intel Core 2 Duo Processor T6600 or Intel Core 2 Duo-processor P7450 and please explain the differences between the t and p series?

The difference is that they are different models. the P7450 is somewhat faster unless you use outdated ram. T6600 is more power hungry, and emits more heat. I have it in my laptop, and right now, using only the browser it runs at ~60 65 degrees Celsius. So, there you are, the P7450 is somewhat better.


What is difference between whirlpool 4396508p and 4396508?

From the Whirlpool site it looks like the only difference is that the p suffix refers to a pack of 2. There is a T suffix also which refers to a triple pack.


What is the difference between a stock and a sock?

The T


Which letter comes midway between M and T?

There are six letters between M and T. They are n, o, p, q, r, and s. The midway point is in the middle between P and Q, so there is no one letter midway between M and T. If you must have an answer, it would be both P and Q.


How many such pairs of letters are there in the word evaporate each of which has as?

4 PAIRS (PO, PR, PT, RT)PO - {P-O} in alphabet O-P-> between P and O no letters (letter count is 0)PR - {P-O-R} in alphabet P-Q-R -> between P and R same number of letter occurs (letter count is 1)PT - {P-O-R-A-T} in alphabet P-Q-R-S-T -> between P and T same number of letters (letter count is 3)RT - {R-A-T} in alphabet R-S-T -> between R and T same number of letter (letters count is 1)


Difference between a blog site and a blog host?

This is a perfect example to your answer, yazin comes first on the top of the list, check them out by removing the space h t t p s ://yazing. /deals/bluehost/Copper24


Difference between NULL and NUL?

NUL usually refers to the NUL device as used in CP/M, DOS and Windows. It is also an abbreviation for the null character ('\0'). NUL has no meaning with regards C/C++. In C/C++, NULL is a symbol for the value zero (0x00000000 on 32-bit systems). All pointer variables must be initialised before they can be used. If a pointer is not in use, it must be zeroed (nullified). Example: #include <iostream> using namespace std; int main() { cout << "Command\t\tAddressOf (&p)\tPointsTo (p)\tValueAt (*p)" << endl; cout << "-------\t\t--------------\t------------\t------------" << endl; int * p; cout << "int * p;" << "\t0x" << &p << "\tN/A\t" << "\tN/A" << endl; p = new int; cout << "p = new int;" << "\t0x" << &p << "\t0x" << p << "\t" << *p << endl; *p = 12; cout << "*p = 12;" << "\t0x" << &p << "\t0x" << p << "\t" << *p << endl; delete( p ); cout << "delete( p );" << "\t0x" << &p << "\t0x" << p << "\t" << *p << endl; p = NULL; cout << "p = NULL;" << "\t0x" << &p << "\t0x" << p << "\tN/A" << endl << endl; return( 0 ); }