Answer:
i believe the answer is a but i could be wrong
Explanation:
i hope it helps
Answer:
1. Conduction
2. Convection
3. Radiation
Explanation:
The 3 modes of heat transfer i an air conditioning system:
1. Conduction:
The transfer of heat by conduction takes place in solid and is when the conduction takes place as a result of direct contact in between the interacting material which transfer the heat energy from particle to particle thus conducting the heat through out the system.
2. Convection:
The other mode for the transfer of heat which takes place especially in fluids - gases and liquids is through the technique of convection in which the transfer of heat takes place by the circular motion of the atoms and molecules of the fluid which carries the heat energy and results in the distribution of the heated fluid in the entire system thus transferring all the heat energy in the entire system.
3. Radiation:
The third mode of heat transfer in the air conditioning system is through radiation. This method transfers the heat by making use of the electro-magnetic radiation in the infra red spectrum where the waves of the spectrum transfers the heat energy with the help of a medium or without any medium at all.
Thus making the radiation method of heat transfer as the only method out of the three methods which does not require the material medium for the transfer of heat energy.
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2
Answer:
3. -9 degrees farenheit 5. Shes missing 3 cents. 6. 641 feet below sea level
Explanation:
Answer:
7 available
Explanation:
Since 3 colors are available r = 3
Total combination = 35
nCr = 35 ---1
nCr = n!/(n-r)!r!---2
We put equation 1 and 2 together
n-1)(n-2)(n-3)!/n-3)! = 35x 3!
We cancel out (n-3)!
(n-1)(n-2) = 210
7x6x5 = 210
nC3 = 35
7C3 = 35
So If there are 35 combinations, 7 colors are available.
Thank you!