Answer:
Disc brake system use a slim rotor and small caliper to halt wheel movement but a drum brake system allow heat to build up inside the drum during heavy braking .
The false statement about onStep is: B. The default number of steps per second is 30.
<h3>What is an onStep?</h3>
An onStep can be defined as a computerized telescope goto controller that is designed and developed to <u>animate shapes</u> while using it on a variety of mounting systems such as forks.
<h3>The characteristics of an onStep.</h3>
In Engineering, some of the characteristics that are associated with an onStep include the following:
- The onStep function can be called without user input.
- It can be used to animate shapes without user input.
- It only runs a certain number of times.
In conclusion, the default number of steps per second for onStep isn't 30.
Read more on onStep here: brainly.com/question/25619349
Answer:
A) energy loss E = pgQtH
Where p = density in kg/m3
g = gravity acceleration in m/s2
Q = flow rate in m3/s
t = time taken for flow in sec
H = height of flow in m
B) power required to run pump;
P = pgQH
Explanation:
Detailed explanation and calculation is shown in the image below
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.