Answer:
Math and Computer Skills. A qualified engineer should be good at math, at least through the level of calculus and trigonometry, and understand the importance of following the data when making design decisions.
Organization and Attention to Detail.
Curiosity.
Creativity.
Critical Thinking.
Intuition.
Explanation:
Air supplied to a pneumatic system is supplied through the C. Actuator
Explanation
Pneumatic systems are like hydraulic systems, it is just that these systems uses compressed air rather than hydraulic fluid. Pneumatic systems are used widely across the industries. these pneumatic systems needs a constant supply of compressed air to operate. This is provided by an air compressor. The compressor sucks in air at a very high rate from the environment and stores it in a pressurized tank. the Air is supplied thereafter with the help of a actuator valve that is a more sophisticated form of a valve.
From the above statement it is clear that Air supplied to a pneumatic system is supplied through the Actuator
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;
}
Answer:
The differences are listed below
Explanation:
The differences between consolidation and compaction are as follows:
In compaction the mechanical pressure is used to compress the soil. In consolidation, there is an application of stead pressure.
In compaction, there is a dynamic load by rapid mechanical methods like tamping, rolling, etc. In consolidation, there is static and sustained pressure applied for a long time.
In compaction, the soil volume is reduced by removing air from the void. In consolidation, the soil volume is reduced by squeezing out water from the pores.
Compaction is used for sandy soil, consolidation on the other hand, is used for clay soil.