Answer:
0.234
Explanation:
True stress is ratio of instantaneous load acting on instantaneous cross-sectional area
σ = k × (ε)^n
σ = true stress
ε = true strain
k = strength coefficient
n = strain hardening exponent
ε = ( σ / k) ^1/n
take log of both side
log ε =
( log σ - log k)
n = ( log σ - log k) / log ε
n = (log 578 - log 860) / log 0.20 = 0.247
the new ε = ( 600 / 860)^( 1 / 0.247) = 0.234
Do you have a picture of the question?
True
Suspension is the system of tires, tire air, springs, shock absorbers and linkages that connects a vehicle to its wheels and allows relative motion between the two.[1] Suspension systems must support both road holding/handling and ride quality
Answer:
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
string name[5];
int age[5];
int i,j;
for ( i = 0; i<=4; i++ ) {
cout << "Please enter student's name:";
cin >> name[i];
cout << "Please enter student's age:";
cin >> age[i];
}
for (i=0;i<=4;i++){
cout<<"Age of "<< name[i]<<" is "<<age[i]<<endl;
}
}
Output of above program is displayed in figure attached.