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:
Feedback control of arm movements using Neuro-Muscular Electrical Stimulation (NMES) combined with a lockable, passive exoskeleton for gravity compensation
Answer:
I'm no engineer, but blue and purple are cool colors and white is every color so I'd go with orange
Answer:
8.85 Ω
Explanation:
Resistance of a wire is:
R = ρL/A
where ρ is resistivity of the material,
L is the length of the wire,
and A is the cross sectional area.
For a round wire, A = πr² = ¼πd².
For aluminum, ρ is 2.65×10⁻⁸ Ωm, or 8.69×10⁻⁸ Ωft.
Given L = 500 ft and d = 0.03 in = 0.0025 ft:
R = (8.69×10⁻⁸ Ωft) (500 ft) / (¼π (0.0025 ft)²)
R = 8.85 Ω
Answer:
a) 5.2 kPa
b) 49.3%
Explanation:
Given data:
Thermal efficiency ( л ) = 56.9% = 0.569
minimum pressure ( P1 ) = 100 kpa
<u>a) Determine the pressure at inlet to expansion process</u>
P2 = ?
r = 1.4
efficiency = 1 - [ 1 / (rp)
]
0.569 = 1 - [ 1 / (rp)^0.4/1.4
1 - 0.569 = 1 / (rp)^0.285
∴ (rp)^0.285 = 0.431
rp = 0.0522
note : rp = P2 / P1
therefore P2 = rp * P1 = 0.0522 * 100 kpa
= 5.2 kPa
b) Thermal efficiency
Л = 1 - [ 1 / ( 10.9 )^0.285 ]
= 0.493 = 49.3%