Answer:
Explanation:
From the given information:
Water freezing temp. 
Heat rejected temp 
Recall that:
The coefficient of performance is:

Again:
The efficiency given by COP can be represented by:

Finally; the power input in an hour can be determined by using the formula:

In hp; since 1 kW = 1.34102 hp
6.86kW will be = (6.86 × 1.34102) hp
= 9.199 hp
Answer:
Explanation:
Attached is the solution to the question
Answer:
a) -1.46 x 10∧-5, 1.445x 10∧-4, -6.355 x 10∧-4
b) 3.926 x 10∧-4, -2.626 x 10∧-4
c) 6.552 x 10∧-4, 6.5 x 10∧-5
Explanation:
a) -1.46 x 10∧-5, 1.445x 10∧-4, -6.355 x 10∧-4
b) 3.926 x 10∧-4, -2.626 x 10∧-4
c) 6.552 x 10∧-4, 6.5 x 10∧-5
The explanation is shown in the attachment. I hope i have been able to help.
Answer:
k = 1.91 × 10^-5 N m rad^-1
Workings and Solution to this question can be viewed in the screenshot 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;
}