Answer:
W=2 MW
Explanation:
Given that
COP= 2.5
Heat extracted from 85°C
Qa= 5 MW
Lets heat supplied at 150°C = Qr
The power input to heat pump = W
From first law of thermodynamics
Qr= Qa+ W
We know that COP of heat pump given as



W=2 MW
For Carnot heat pump


2.5 T₂ - 895= T₂
T₂=596.66 K
T₂=323.6 °C
Answer:
c. and d
Explanation:
As a whistle-blower, one of your aim is to guide against unethical dealings of other people , hence you are creating an environment that uphold ethical conduct,
In addition, whistle-blowing will disclose all imminent dangers to the software community thereby preventing security breaches.
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 <<
Answer:
Explanation:
1 inch is 0.0833333feet
6.1 inches is 0.5083 feet
Density = mass/volume
64.6 = mass/0.50833
mass = 64.6 x 0.5083 =32.83618lb