Answer: D) All of the above
Explanation:
Burn rate can be affected by all of the above reasons as, variation in chamber pressure because the pressure are dependence on the burn rate and temperature variation in initial gain can affect the rate of the chemical reactions and initial gain in the temperature increased the burning rate. As, gas flow velocity also influenced to increasing the burn rate as it flowing parallel to the surface burning. Burn rate is also known as erosive burning because of the variation in flow velocity and chamber pressure.
Answer:
true because BCD used 6 bits to represent a symbol .
Explanation:
mark me brainlist
9514 1404 393
Answer:
13/80
Explanation:
The product is ...
(1 3/10)×(1/8) = (13/10)×(1/8) = (13×1)/(10×8) = 13/80
Answer:
(A) elemental, alloy, or compound thin films are deposited on to a bulk substrate
Explanation:
In film deposition there is process of depositing of material in form of thin films whose size varies between the nano meters to micrometers onto a surface. The material can be a single element a alloy or a compound.
This technology is very useful in semiconductor industries, in solar panels in CD drives etc
so from above discussion it is clear that option (a) will be the correct answer
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;
}