Answer:
ok I will help you ha Ha ha ha ha ha ha ha ha ha ha ha
Answer:
Technician B is right.
Explanation:
Air conditioning refrigerant contains Freon R22 and R410a, which have been linked to environmental damages, including ozone depletion, global warming, and energy-inefficiency. For environmentally-savvy entities and individuals, there is the modern move to a more environment-friendly refrigerant, known as R-32. Technician A's advice to vent the refrigerant outside the shop is in bad taste. He does not seem to be aware of the environmental footprint of such an action. Venting gas outside, in addition to the environmental damages, is also a waste of resources, and therefore, costly. This is why Technician B's advice should be preferred.
Answer:
The nail exerts a force of 573.88 Pounds on the Hammer in positive j direction.
Explanation:
Since we know that the force is the rate at which the momentum of an object changes.
Mathematically 
The momentum of any body is defines as 
In the above problem we see that the moumentum of the hammer is reduced to zero in 0.023 seconds thus the force on the hammer is calculated using the above relations as


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;
}