Answer:
a) 0.3
b) 3.6 mm
Explanation:
Given
Length of the pads, l = 200 mm = 0.2 m
Width of the pads, b = 150 mm = 0.15 m
Thickness of the pads, t = 12 mm = 0.012 m
Force on the rubber, P = 15 kN
Shear modulus on the rubber, G = 830 GPa
The average shear strain can be gotten by
τ(average) = (P/2) / bl
τ(average) = (15/2) / (0.15 * 0.2)
τ(average) = 7.5 / 0.03
τ(average) = 250 kPa
γ(average) = τ(average) / G
γ(average) = 250 kPa / 830 kPa
γ(average) = 0.3
horizontal displacement,
δ = γ(average) * t
δ = 0.3 * 12
δ = 3.6 mm
Explanation:
the owner of the bridge and some workers
Explanation:
instrument of engineering and management skills that can be used to identify a device on a network of devices
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.