ANSWERS:

Explanation:
Given:
Piston cylinder assembly which mean that the process is constant pressure process P=C.
<u>AMMONIA </u>
state(1)
saturated vapor 
The temperature 
Isothermal process 
a)
( double)
b)
(reduced by half)
To find the final state by giving the quality in lbf/in we assume the friction is neglected and the system is in equilibrium.
state(1)
using PVT data for saturated ammonia

then the state exists in the supper heated region.
a) from standard data



assume linear interpolation


b)

from standard data

then the state exist in the wet zone


Answer:
See explaination
Explanation:
#include <iostream>
#include<string.h>
using namespace std;
bool isPalindrome(string str, int lower, int upper){
if(str.length() == 0 || lower>=upper){
return true;
}
else{
if(str.at(lower) == str.at(upper)){
return isPalindrome(str,lower+1,upper-1);
}
else{
return false;
}
}
}
int main(){
string input;
cout<<"Enter string: ";
cin>>input;
if(isPalindrome(input,0,input.length()-1)){
cout<<input<<" is a palindrome"<<endl;
}
else{
cout<<input<<" is NOT a palindrome"<<endl;
}
return 0;
}
Answer:
im sorry but i cant find any studies about this and im 3 days late
Answer:
I did not what is it about?