Answer:
Low ambient temperature
Explanation:
Hope this helps. If it did, please mark as brianliest so other people see it. Thanks! - Kai
Answer:
t = 6179.1 s = 102.9 min = 1.7 h
Explanation:
The energy provided by the resistance heater must be equal to the energy required to boil the water:
E = ΔQ
ηPt = mH
where.
η = efficiency = 84.5 % = 0.845
P = Power = 2.61 KW = 2610 W
t = time = ?
m = mass of water = 6.03 kg
H = Latent heat of vaporization of water = 2.26 x 10⁶ J/kg
Therefore,
(0.845)(2610 W)t = (6.03 kg)(2.26 x 10⁶ J/kg)
![t = \frac{1.362\ x\ 10^7\ J}{2205.45\ W}](https://tex.z-dn.net/?f=t%20%3D%20%5Cfrac%7B1.362%5C%20x%5C%2010%5E7%5C%20J%7D%7B2205.45%5C%20W%7D)
<u>t = 6179.1 s = 102.9 min = 1.7 h</u>
Answer:
I know ship has stream line body
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 <<
A. I believe, lmk if I’m right