Answer:
Check the explanation
Explanation:
to know the lift per unit span (N/m) that is expected to be measured when the wing attack angle is 4°
as well as the corresponding section lift coefficient and die moment coefficient .
Kindly check the attached image below to see the step by step explanation to the above question.
Answer:
COP(heat pump) = 2.66
COP(Theoretical maximum) = 14.65
Explanation:
Given:
Q(h) = 200 KW
W = 75 KW
Temperature (T1) = 293 K
Temperature (T2) = 273 K
Find:
COP(heat pump)
COP(Theoretical maximum)
Computation:
COP(heat pump) = Q(h) / W
COP(heat pump) = 200 / 75
COP(heat pump) = 2.66
COP(Theoretical maximum) = T1 / (T1 - T2)
COP(Theoretical maximum) = 293 / (293 - 273)
COP(Theoretical maximum) = 293 / 20
COP(Theoretical maximum) = 14.65
You need to explain it more simple as everyone is clueless
Answer: LED have the lowest cost of operation.
Explanation:
If we ignore the initial procurement cost of the items the operational cost of any device consuming electricity is given by
Among the three item's LED consumes the lowest power to give the same level of brightness as compared to the other 2 item's thus LED's shall have the lowest operational cost.
Answer:
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
string name[5];
int age[5];
int i,j;
for ( i = 0; i<=4; i++ ) {
cout << "Please enter student's name:";
cin >> name[i];
cout << "Please enter student's age:";
cin >> age[i];
}
for (i=0;i<=4;i++){
cout<<"Age of "<< name[i]<<" is "<<age[i]<<endl;
}
}
Output of above program is displayed in figure attached.