Answer
Definitely a
Explanation:
Because OK yes the space suit is necessary and everything but u can't get to space without the shuttle
Answer: It doesnt let me watch the link im sorry :(
Explanation:
Answer:
The compressive stress of aplying a force of 708 kN in a 81 mm diamter cylindrical component is 0.137 kN/mm^2 or 137465051 Pa (= 137.5 MPa)
Explanation:
The compressive stress in a cylindrical component can be calculated aby dividing the compressive force F to the cross sectional area A:
fc= F/A
If the stress is wanted in Pascals (Pa), F and A must be in Newtons and square meters respectively.
For acylindrical component the cross sectional area A is:
A=πR^
If the diameter of the component is 81 mm, the radius is the half:
R=81mm /2 = 40.5 mm
Then A result:
A= 3.14 * (40.5 mm)^2 = 5150.4 mm^2
In square meters:
A= 3.14 * (0.0405 m)^2 = 0.005150 m^2
Replacing 708 kN to the force:
fc= 708 kN / 5150.4 mm^2 = 0.137 kN/mm^2
Using the force in Newtons:
F= 70800 N
Finally the compressive stress in Pa is:
fc= 708000 / 0.005150 m^2 = 137465051 Pa = 137 MPa
Answer:
False
Explanation:
as we know that 
=> Area under shear diagram gives the moment at any point but the reverse cannot be established from the same relation
Answer:
#include<iostream>
using namespace std;
int main()
{
double data[3][5],avg,least,most,total;
int leastNum,mostNum;
for(int i=0;i<3;i++)
{
cout<<"Enter quantity of food for monkey "<<i+1<<":\n";
for(int j=0;j<5;j++)
{
cout<<"Day "<<j+1<<": ";
cin>>data[i][j];
}
}
least = data[0][0];
most = data[0][0];
for(int i = 0;i<3;i++)
{
for(int j = 0;j<5;j++)
{
total+=data[i][j];
if(data[i][j]>most)
{
most=data[i][j];
mostNum=i+1;
}
if(data[i][j]<least)
{
least=data[i][j];
leastNum=i+1;
}
}
}
avg=total/5.0;
cout<<"Average food eaten in a day by all the 3 monkeys: "<<avg<<endl;
cout<<"Most amount of food eaten in a day: "<<most<<" by monkey: "<<mostNum<<endl;
cout<<"Least amount of food eaten in a day: "<<least<<" by monkey: "<<leastNum<<endl;
return 0;
}