Answer:
See explaination
Explanation:
Please kindly check attachment for the step by step solution of the given problem
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:
can't understand the writting
Answer:
How do I calculate voltage drop?
To calculate voltage drop, E, across a component, you need to know the resistance of the component and the current thru it. Ohm's Law is E=I⋅R , which tells us to then multiply I by R . E is the voltage across the component also known as voltage drop
Explanation:
Answer:
Rate of heat transfer to the room air per meter of pipe length equals 521.99 W/m
Explanation:
Since it is given that the radiation losses from the pipe are negligible thus the only mode of heat transfer will be by convection.
We know that heat transfer by convection is given by

where,
h = heat transfer coefficient = 10.45
(free convection in air)
A = Surface Area of the pipe
Applying the given values in the above formula we get
