Answer: from what i know im pretty sure its isometrics or sketches im certain its sketches but not 100%
Explanation: A sketch is a rapidly executed freehand drawing that is not usually intended as a finished work. A sketch may serve a number of purposes: it might record something that the artist sees, it might record
What the given passage is saying about the relationship between sustainability and responsibility is that;
C: We should only consider products or services to be green if their broad impact can be considered so.
<h3>Sustainability</h3>
From the passage, we see a write up questioning if the things we term to be green are truly green.
Now, from the passage, we see that a biofuel that is considered to be green is not really green if we consider that if it requires massive overproduction, it could wreck the water table.
Also, he says that if the production is local but also wasteful then it is not green.
Thus, we can see clearly that before we term a product or service as green, we should also consider their broad impact on the environment.
Read more about sustainability at; brainly.com/question/14154063
Answer:
For now the answer to this question is only for partial fraction. Find attached.
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;
}