Answer:
See attachment for completed question
Explanation:
Given that; Brainly.com
What is your question?
mkasblog
College Engineering 5+3 pts
The dry unit weight of a soil sample is 14.8 kN/m3.
Given that G_s = 2.72 and w = 17%, determine:
(a) Void ratio
(b) Moist unit weight
(c) Degree of saturation
(d) Unit weight when the sample is fully saturated
See complete solving at attachment
Answer:
0.05 J/K
Explanation:
Given data in question
heat (Q) = 10 J
temperature (T) = 200 K
to find out
the change in entropy of the system
Solution
we will solve this by the entropy change equation
i.e ΔS = ΔQ/T ...................1
put the value of heat Q and Temperature T in equation 1
ΔS is the enthalpy change and T is the temperature
so ΔS = 10/200
ΔS = 0.05 J/K
Answer: ok the best one would be letter s because it goes
Explanation:
467,,mm tubing should do
Answer:
A wheelbarrow, a bottle opener, and an oar are examples of second class levers
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;
}