Answer:
(e) 1.64 kW
Explanation:
The Coefficient of Performance of the Reverse Carnot's Cycle is:



Lastly, the power required to operate the air conditioning system is:



Hence, the answer is E.
Answer:
pliers
Explanation:
because that makes the most sense
Answer:
//Define the header file
#ifndef PLAYER_H
#define PLAYER_H
//header file.
#include <string>
//Use the standard namespace.
using namespace std;
//Define the class Player.
class Player
{
//Declare the required data members.
string name;
int score;
public:
//Declare the required
//member functions.
void setName(string par_name);
void setScore(int par_score);
string getName();
int getScore();
}
//End the definition
//of the header file.
#endif
Player.cpp:
//Include the "Player.h" header file,
#include "Player.h"
//Define the setName() function.
void Player::setName(string par_name)
{
name = par_name;
}
//Define the setScore() function.
void Player::setScore(int par_score)
{
score = par_score;
}
//Define the getName() function.
string Player::getName()
{
return name;
}
//Define the getScore() function.
int Player::getScore()
{
return score;
}
Answer:
a. Heat removal rate will increase
b. Heat removal rate will decrease
Explanation:
Given that
One end of rod is connected to the furnace and rod is long.So this rod can be treated as infinite long fin.
We know that heat transfer in fin given as follows

We know that area

Now when diameter will triples then :





So the new heat transfer will increase by 3 times.
Now when copper rod will replace by aluminium rod :
As we know that thermal conductivity(K) of Aluminium is low as compare to Copper .It means that heat transfer will decreases.