Answer:
Examples of reciprocating motion in daily life are;
1) The needles of a sewing machine
2) Electric powered reciprocating saw blade
3) The motion of a manual tire pump
Explanation:
A reciprocating motion is a motion that consists of motion of a part in an upward and downwards or in a backward and forward (↔) direction repetitively
Examples of reciprocating motion in daily life includes the reciprocating motion of the needles of a sewing machine and the reciprocating motion of the reciprocating saw and the motion of a manual tire pump
In a sewing machine, a crank shaft in between a wheel and the needle transforms the rotary motion of the wheel into reciprocating motion of the needle.
Answer:
(b) False
Explanation:
The specific internal energy of the system does not depend on the path of the process, it is a state function means its depend on only on the initial and the final position it does not depend on the path which it follow in the process.Internal energy is associated with the random motion of the molecules.
So it is false statement as internal energy is not a path function
Answer:
135 hour
Explanation:
It is given that a carburizing heat treatment of 15 hour will raise the carbon concentration by 0.35 wt% at a point of 2 mm from the surface.
We have to find the time necessary to achieve the same concentration at a 6 mm position.
we know that where x is distance and t is time .As the temperature is constant so D will be also constant
So
then we have given and we have to find putting all these value in equation
so
Answer:
diameter is 14 mm
Explanation:
given data
power = 15 kW
rotation N = 1750 rpm
factor of safety = 3
to find out
minimum diameter
solution
we will apply here power formula to find T that is
power = 2π×N×T / 60 .................1
put here value
15 × = 2π×1750×T / 60
so
T = 81.84 Nm
and
torsion = T / Z ..........2
here Z is section modulus i.e = πd³/ 16
so from equation 2
torsion = 81.84 / πd³/ 16
so torsion = 416.75 / / d³ .................3
so from shear stress theory
torsion = σy / factor of safety
so here σy = 530 for 1020 steel
so
torsion = σy / factor of safety
416.75 / d³ = 530 × / 3
so d = 0.0133 m
so diameter is 14 mm
Answer:
Explanation:
ADT for an 2-D array:
struct array{
int arr[10];
}arrmain[10];
An application that stores an array with 1000 rows and 1000 columns, where less than 10,000 of the array values are non-zero. The two different implementations for such arrays that would be more space efficient than a standard two-dimensional array implementation requiring one million positions are :
1) struct array{
int *p;
}arr[1000];
2) struct array{
int *p;
}arr[1000];