Correct answer is option E. No dimensions
As we know formula Pressure (P) is
also,
- Dimensional formula of <em>Pressure is </em>

- Dimensional formula of <em>length is L </em>
- Dimensional formula of <em>mass is M</em>
- Dimensional formula of <em>velocity is </em>

So, as given W=
Dimensional formula of W =
since all terms get cancelled
Work is dimensionless i.e no dimensions
Learn more about dimensions here brainly.com/question/20351712
#SPJ10
Answer:
hello your question is incomplete attached below is the complete question
answer : attached below
Explanation:
let ; x(t) be a real value signal for x ( jw ) = 0 , |w| > 200
g(t) = x ( t ) sin ( 2000 

next we apply Fourier transform
attached below is the remaining part of the solution
Answer:
Given that the temperature of the window is below the dew point it will condensate.
Explanation:
A psychrometric chart (like the one attached) will give you the information needed. This chart is for 14.696 psia.
On the bottom horizontal axes you have the dry-bulb temperature, in this case 70°F, going up from this point you can reach the 50% relative humidity curve (red point on chart), going horizontally from this point to the 100% relative humidity you get the dew point temperature (the point at which moisture will condensate) (blue point on chart). In this case the dew point is 50°C. Given that the temperature of the window is below the dew point it will condensate.
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:
Carnot heat pump
Explanation:
Carnot heat pump is an ideal heat pump in which all processes are reversible and that consume minimum amount of work to and produces maximum amount of heating effect compare to all real engine.And that is why COP of Carnot heat pump is more as compare to real heat pump.
All real heat pump are not perfectly reversible heat pump So this is also called irreversible heat pump .Due to irreversibility the COP of irreversible heat pump is always less than the COP of Carnot heat pump.