Answer:Turning
Explanation: Turning is the process in which the work piece is subjected to machining so that excess part is removed with the help of rotation by turning machine or lathe machine.The cutter tool is used for cutting the excess of the work piece and it is mostly single-pointed so that give accurate removal of the excess of work piece.At times , according to the requirement multi-pointed tool is also used Therefore, the correct option is turning.
Answer:
P=361.91 KN
Explanation:
given data:
brackets and head of the screw are made of material with T_fail=120 Mpa
safety factor is F.S=2.5
maximum value of force P=??
<em>solution:</em>
to find the shear stress
T_allow=T_fail/F.S
=120 Mpa/2.5
=48 Mpa
we know that,
V=P
<u>Area for shear head:</u>
A(head)=π×d×t
=π×0.04×0.075
=0.003×πm^2
<u>Area for plate:</u>
A(plate)=π×d×t
=π×0.08×0.03
=0.0024×πm^2
now we have to find shear stress for both head and plate
<u>For head:</u>
T_allow=V/A(head)
48 Mpa=P/0.003×π ..(V=P)
P =48 Mpa×0.003×π
=452.16 KN
<u>For plate:</u>
T_allow=V/A(plate)
48 Mpa=P/0.0024×π ..(V=P)
P =48 Mpa×0.0024×π
=361.91 KN
the boundary load is obtained as the minimum value of force P for all three cases. so the solution is
P=361.91 KN
note:
find the attached pic
Answer: Burning it.
Explanation: When your car moves its due to the burning of fuel, works like a turbine the molecules evaporate and turn a turbine like object.
Answer:
/* C Program to rotate matrix by 90 degrees */
#include<stdio.h>
int main()
{
int matrix[100][100];
int m,n,i,j;
printf("Enter row and columns of matrix: ");
scanf("%d%d",&m,&n);
/* Enter m*n array elements */
printf("Enter matrix elements: \n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&matrix[i][j]);
}
}
/* matrix after the 90 degrees rotation */
printf("Matrix after 90 degrees roration \n");
for(i=0;i<n;i++)
{
for(j=m-1;j>=0;j--)
{
printf("%d ",matrix[j][i]);
}
printf("\n");
}
return 0;
}