Answer:
Ususushehehehhuuiiïbbb
Explanation:
Yyshehshehshshsheyysysueueue
Explanation:
Clearance:
For easy matching and dis matching of hole and shaft we use size of hole little bit more than the size of shaft and this difference in size is called clearance.
Backlash:
It is the clearance between the two mating gear to avoids failure of gears.Actually when temperature of gears increases then at the same time the size of gear also increases ,due this there is a possibility foe jamming of gears so to avoids this backlash is provides.
Interference:
When two gears are matting then addendum of one gear inters into the deddendum of another gear and due to this gears get jam .This phenomenon is called interference.
In general, bury metal conduits at least 6 inches below the soil surface. You may also run them at a depth of 4 inches under a 4-inch concrete slab. Under your driveway, the conduits must be below a depth of 18 inches, and under a public road or alleyway, they must be buried below 24 inches.
Answer:
#include<iostream>
Using namespace std;
int main()
{
int n, qty;
double price, amount;
cout<<"Number of items ";
cin>>n;
cout<<"ITEM<<"\t"<<"QUANTITY"<<"\t"<<"PRICE"<<"\t"<<"ITEM TOTAL";
for(int i= 1; I<= n; i++)
{
cin>>qty;
cin>>price;
amount = qty * price;
cout<<i<<"\t "<<qty<<"\t"<<price<<"\t"<<amount;
}
}
Explanation
The above program is written in C++ programming language
5 variables are declared and used in the program
n is declared as an integer to represent the total number of items
qty is declared as integer to represent the total quantity of each item
price is declared as double to represent the amount of each individual item
amount is declared as double to represent the total amount of an item; it is gotten by qty * price
i is declared as integer to iterated between each items
The amount of each item is calculated within the iteration and also printed immediately
Answer:
Max shear = 8.15 x 10^7 N/m2
Explanation:
In order to find the maximum stress for a solid shaft having radius r, we will be applying the Torsion formula which can be written as;
Allowable Shear Stress = Torque x Radius / pi/2 x radius^4
Putting the values we have;
T = 2000 N/m
Radius = Diameter/2 = 0.05 / 2 = 0.025 m
Putting values in formula;
Max shear = 2000 x 0.025 / 3.14/2 x (0.025)^4
Max shear = 8.15 x 10^7 N/m2