Answer:
a. 2.08, b. 1110 kJ/min
Explanation:
The power consumption and the cooling rate of an air conditioner are given. The COP or Coefficient of Performance and the rate of heat rejection are to be determined. <u>Assume that the air conditioner operates steadily.</u>
a. The coefficient of performance of the air conditioner (refrigerator) is determined from its definition, which is
COP(r) = Q(L)/W(net in), where Q(L) is the rate of heat removed and W(net in) is the work done to remove said heat
COP(r) = (750 kJ/min/6 kW) x (1 kW/60kJ/min) = 2.08
The COP of this air conditioner is 2.08.
b. The rate of heat discharged to the outside air is determined from the energy balance.
Q(H) = Q(L) + W(net in)
Q(H) = 750 kJ/min + 6 x 60 kJ/min = 1110 kJ/min
The rate of heat transfer to the outside air is 1110 kJ for every minute.
Answer: The answer is A. The company is trying to transfer intellectual capital to a knowledge management system
Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}
Answer:
I need some more point and i do not understand your question
Explanation: