Answer with Explanation:
Assuming that the degree of consolidation is less than 60% the relation between time factor and the degree of consolidation is
Solving for 'U' we get
Since our assumption is correct thus we conclude that degree of consolidation is 50.46%
The consolidation at different level's is obtained from the attached graph corresponding to Tv = 0.2
i) = 71% consolidation
ii) = 45% consolidation
iii) = 30% consolidation
Part b)
The degree of consolidation is given by
Thus a settlement of 50.46 centimeters has occurred
For time factor 0.7, U is given by
thus consolidation of 85.59 % has occured if time factor is 0.7
The degree of consolidation is given by
Answer:
5.1 Personnel Security. ...
5.2 Physical and Environmental Protection. ...
5.3 Production, Input and Output Controls. ...
5.4 Contingency Planning and Disaster Recovery. ...
5.5 System Configuration Management Controls. ...
5.6 Data Integrity / Validation Controls. ...
5.7 Documentation. ...
5.8 Security Awareness and Training.
Answer:
2102.1 m
Explanation:
Temperature at the equator = 0⁰
Radius of the earth = 6.37x10⁶
Required:
We how to find out what the clearance between tape and ground would be if temperature increases to 30 degrees.
Final temperature = ∆T = 303-273 = 30
S = 11x10^-6
The clearance R = Ro*S*∆T
=6.37x10⁶x 11x10^-6x30
= 2102.1m
Or 2.102 kilometers
Thank you
Answer:
The following program is in C++.
#include <bits/stdc++.h>
using namespace std;
void lastChars(string s)
{
int l=s.length();
if(l!=0)
{
cout<<"The last character of the string is: "<<s[l-1];
}
}
int main() {
string s;//declaring a string..
getline(cin,s);//taking input of the string..
lastChars(s);//calling the function..
return 0;
}
Input:-
Alex is going home
Output:-
The last character of the string is: e
Explanation:
In the function lastChars() there is one argument that is a string.I have declared a integer variable l that stores the length of the string.If the length of the string is not 0.Then printing the last character of the string.In the main function I have called the function lastChars() with the string s that is prompted from the user.
Answer should be B.3 hopefully