Answer:
5.6 mm
Explanation:
Given that:
A cylindrical tank is required to contain a:
Gage Pressure P = 560 kPa
Allowable normal stress
= 150 MPa = 150000 Kpa.
The inner diameter of the tank = 3 m
In a closed cylinder there exist both the circumferential stress and the longitudinal stress.
Circumferential stress 
Making thickness t the subject; we have


t = 0.0056 m
t = 5.6 mm
For longitudinal stress.



t = 0.0028 mm
t = 2.8 mm
From the above circumferential stress and longitudinal stress; the stress with the higher value will be considered ; which is circumferential stress and it's minimum value with the maximum thickness = 5.6 mm
Answer:
Following the ways of dealing with incomplete questions, i was able to get the complete question, please look at the attachment for ans.
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:
Expressions are made up of terms.
A term is a product of factors.
Coefficient is the numerical factor in the term
Before moving to terms like monomials, binomials, and polynomials, like and unlike terms are discussed.
When terms have the same algebraic factors, they are like terms.
When terms have different algebraic factors, they are unlike terms.
Explanation:
Hi please follow me also if you can and thanks.