Answer:
metal
Explanation:
A yoke assembly are use in an assembly of a rack and pinion steering gear for a vehicle. The spring loaded yokes guided with a rack are made up of metals. It consists of a spring made of steel which pushes the back side of the rack to reduce the play that occurs between the pinion and the rack and still allow the relative motion.
Answer:
Heat required (q) = 471.19kj/kg
Explanation:
Find attached below solution to problem
Answer:
a) -8 lb / ft^3
b) -70.4 lb / ft^3
c) 54.4 lb / ft^3
Explanation:
Given:
- Diameter of pipe D = 12 in
- Shear stress t = 2.0 lb/ft^2
- y = 62.4 lb / ft^3
Find pressure gradient dP / dx when:
a) x is in horizontal flow direction
b) Vertical flow up
c) vertical flow down
Solution:
- dP / dx as function of shear stress and radial distance r:
(dP - y*L*sin(Q))/ L = 2*t / r
dP / L - y*sin(Q) = 2*t / r
Where dP / L = - dP/dx,
dP / dx = -2*t / r - y*sin(Q)
Where r = D /2 ,
dP / dx = -4*t / D - y*sin(Q)
a) Horizontal Pipe Q = 0
Hence, dP / dx = -4*2 / 1 - 62.4*sin(0)
dP / dx = -8 + 0
dP/dx = -8 lb / ft^3
b) Vertical pipe flow up Q = pi/2
Hence, dP / dx = -4*2 / 1 - 62.4*sin(pi/2)
dP / dx = 8 - 62.4
dP/dx = -70.4 lb / ft^3
c) Vertical flow down Q = -pi/2
Hence, dP / dx = -4*2 / 1 - 62.4*sin(-pi/2)
dP / dx = -8 + 62.4
dP/dx = 54.4 lb / ft^3
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.
Yes bravo bravo i indeed do think answer