Answer:
c) 1.75 g/cm³
Explanation:
Given that
Radii of the A ion, r(c) = 0.137 nm
Radii of the X ion, r(a) = 0.241 nm
Atomic weight of the A ion, A(c) = 22.7 g/mol
Atomic weight of the X ion, A(a) = 91.4 g/mol
Avogadro's number, N = 6.02*10^23 per mol
Solution is attached 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 three types of relearn procedures are auto relearn, stationary and OBD.
Explanation:
In TPMS system, after the direct service like adjustment of air pressure, tire rotation or replacement of sensors etc, is performed then maximum vehicle often needs TPMS system relearn that needs to be performed.
For performing these relearn procedure, there are mainly three types:
- auto relearn
- stationary relearn
- OBD
After applying the relearn process, the TPMS system will again be in proper function.