Answer:
Super insulation are obtained by using layers of highly reflective sheets separated by glass fibers in an vacuumed space. Radiation heat transfer between any of the surfaces is inversely proportional to the number of sheets used and thus heat lost by radiation will be very low by using these highly reflective sheets which will an effective way of heat transfer.
Explanation:
Answer:
T = 15 kN
F = 23.33 kN
Explanation:
Given the data in the question,
We apply the impulse momentum principle on the total system,
mv₁ + ∑
= mv₂
we substitute
[50 + 3(30)]×10³ × 0 + FΔt = [50 + 3(30)]×10³ × ( 45 × 1000 / 3600 )
F( 75 - 0 ) = 1.75 × 10⁶
The resultant frictional tractive force F is will then be;
F = 1.75 × 10⁶ / 75
F = 23333.33 N
F = 23.33 kN
Applying the impulse momentum principle on the three cars;
mv₁ + ∑
= mv₂
[3(30)]×10³ × 0 + FΔt = [3(30)]×10³ × ( 45 × 1000 / 3600 )
F(75-0) = 1.125 × 10⁶
The force T developed is then;
T = 1.125 × 10⁶ / 75
T = 15000 N
T = 15 kN
Answer:

Explanation:
From the question we are told that:
Water flow Rate 
Initial Temperature 
Final Temperature 
Let
Specific heat of water 
And


Generally the equation for Heat transfer rate of water
is mathematically given by
Heat transfer rate to water= mass flow rate* specific heat* change in temperature



Therefore


Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<