Answer:
The lunar radiation environment, allowing scientists to determine potential impacts to astronauts and other life. It also will test models on the effects of radiation and measure radiation absorption by a type of plastic that is like human tissue. The results could aid in the development of protective technologies to help keep future lunar crew members safe. CRaTER was built and developed by Boston University and the Massachusetts Institute of Technology in Boston.
Answer:
Elastic modulus of steel = 202.27 GPa
Explanation:
given data
long = 110 mm = 0.11 m
cross section 22 mm = 0.022 m
load = 89,000 N
elongation = 0.10 mm = 1 × m
solution
we know that Elastic modulus is express as
Elastic modulus = ................1
here stress is
Stress = .................2
Area = (0.022)²
and
Strain = .............3
so here put value in equation 1 we get
Elastic modulus =
Elastic modulus of steel = 202.27 × Pa
Elastic modulus of steel = 202.27 GPa
Answer:
1.Plant Grass and Shrubs. Grass and shrubs are very effective at stopping soil erosion. ...
2.Use Erosion Control Blankets to Add 3.Vegetation to Slopes. ...
4.Build Terraces. ...
5.Create Diversions to Help Drainage
Answer:
Under no circumstances
Explanation:
I'm not 100% sure why, but I remember hearing that you're not suposed to go over the speed limit no matter what
Answer:
Explanation along with code and output results is provided below.
C++ Code:
#include <iostream>
using namespace std;
int main()
{
int year;
cout<<"Enter the car model year."<<endl;
cin>>year;
if (year<=1969)
{
cout<<"Few safety features."<<endl;
}
else if (year>=1970 && year<1989)
{
cout<<"Probably has seat belts."<<endl;
}
else if (year>=1990 && year<1999)
{
cout<<"Probably has antilock brakes."<<endl;
}
else if (year>=2000)
{
cout<<"Probably has airbags."<<endl;
}
return 0;
}
Explanation:
The problem was to print feature messages of a car given its model year.
If else conditions are being used incorporate the logic. The code has been tested with several inputs and got correct output results.
Output:
Enter the car model year.
1961
Few safety features.
Enter the car model year.
1975
Probably has seat belts.
Enter the car model year.
1994
Probably has antilock brakes.
Enter the car model year.
2005
Probably has airbags.