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:
1) 
2) 
Explanation:
For isothermal process n =1

![V_o = \frac{5}{[\frac{72}{80}]^{1/1} -[\frac{72}{180}]^{1/1}}](https://tex.z-dn.net/?f=V_o%20%20%3D%20%5Cfrac%7B5%7D%7B%5B%5Cfrac%7B72%7D%7B80%7D%5D%5E%7B1%2F1%7D%20-%5B%5Cfrac%7B72%7D%7B180%7D%5D%5E%7B1%2F1%7D%7D)

calculate pressure ratio to determine correction factor

correction factor for calculate dpressure ration for isothermal process is
c1 = 1.03

b) for adiabatic process
n =1.4
volume of hydraulic accumulator is given as
![V_o =\frac{\Delta V}{[\frac{p_o}{p_1}]^{1/n} -[\frac{p_o}{p_2}]^{1/n}}](https://tex.z-dn.net/?f=V_o%20%3D%5Cfrac%7B%5CDelta%20V%7D%7B%5B%5Cfrac%7Bp_o%7D%7Bp_1%7D%5D%5E%7B1%2Fn%7D%20-%5B%5Cfrac%7Bp_o%7D%7Bp_2%7D%5D%5E%7B1%2Fn%7D%7D)
![V_o = \frac{5}{[\frac{72}{80}]^{1/1.4} -[\frac{72}{180}]^{1/1.4}}](https://tex.z-dn.net/?f=V_o%20%20%3D%20%5Cfrac%7B5%7D%7B%5B%5Cfrac%7B72%7D%7B80%7D%5D%5E%7B1%2F1.4%7D%20-%5B%5Cfrac%7B72%7D%7B180%7D%5D%5E%7B1%2F1.4%7D%7D)

calculate pressure ratio to determine correction factor

correction factor for calculate dpressure ration for isothermal process is
c1 = 1.15

You can get hurt if u don’t use it properly.