The answer is number 2) Increase the resistance of the concrete to freeze-thaw damage.
The effect would be the altitude of the air, the higher you go up the closer you are to space we’re there’s no oxygen and everything moves slow so when your trying to fly across the world it could feel like your moving slower
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

Answer:
The advantage to using a rosebud tip is that it expands the flame temperature over a wider area vs using a #0 size tip.
Explanation:
Hope this helped Mark BRAINLIEST!!
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;
}