Answer:
a mass of water required is mw= 1273.26 gr = 1.27376 Kg
Explanation:
Assuming that the steam also gives out latent heat, the heat provided should be same for cooling the hot water than cooling the steam and condense it completely:
Q = mw * cw * ΔTw = ms * cs * ΔTw + ms * L
where m = mass , c= specific heat , ΔT=temperature change, L = latent heat of condensation
therefore
mw = ( ms * cs * ΔTw + ms * L )/ (cw * ΔTw )
replacing values
mw = [182g * 2.078 J/g°C*(118°C-100°C) + 118 g * 2260 J/g ] /[4.187 J/g°C * (90.7°C-39.4°C)] = 1273.26 gr = 1.27376 Kg
Answer:
<em>D</em><em>e</em><em>s</em><em>k</em><em>t</em><em>o</em><em>p</em>
Explain:
<em>Desktop refers to the main screen of the computer. It is the first screen you see after logging in. The desktop’s appearance can vary widely because it is highly customizable, but generally desktops will feature a large image, icons, and a taskbar(covered later on this page).</em>
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.