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;
}
When a psychologist simply records the relationship between two variables without manipulating them, it is called a correlational study.
The observed relationship does not by itself reveal which variable causes the other. This is the directionally problem. Also, the relationship may be due to a third variable controlling both of the observed variables.
Answer:
the volume of water that will be required to bring these soils to the optimum moisture content is 1859 kL
Explanation:
Given that;
volume of cut = 25,100 m³
Volume of dry soil fill = 23,300 m³
Weight of the soil will be;
⇒ 93% × 18.3 kN/m³ × 23,300 m³
= 0.93 × 426390 kN 3
= 396,542.7 kN
Optimum moisture content = 12.9 %
Required amount of moisture = (12.9 - 8.3)% = 4.6 %
So,
Weight of water required = 4.6% × 396,542.7 = 18241 kN
Volume of water required = 18241 / 9.81 = 1859 m³
Volume of water required = 1859 kL
Therefore, the volume of water that will be required to bring these soils to the optimum moisture content is 1859 kL
D. Chlorofluorocarbon
This is a man-made carbon that causes the gradual thinning(deception) in the earth’s Ozone layer.
Hope this helped and pls mark as brainliest!
~ Luna