Given:
Temperature of water,
=
=273 +(-6) =267 K
Temperature surrounding refrigerator,
=
=273 + 21 =294 K
Specific heat given for water,
= 4.19 KJ/kg/K
Specific heat given for ice,
= 2.1 KJ/kg/K
Latent heat of fusion,
= 335KJ/kg
Solution:
Coefficient of Performance (COP) for refrigerator is given by:
Max
= 
=
= 9.89
Coefficient of Performance (COP) for heat pump is given by:
Max
= 
= 10.89
Answer: it would overload
Explanation:
Answer:
The answer to this question is 1273885.3 ∅
Explanation:
<em>The first step is to determine the required hydraulic flow rate liquid if working pressure and if a cylinder with a piston diameter of 100 mm is available.</em>
<em>Given that,</em>
<em>The distance = 50mm</em>
<em>The time t =10 seconds</em>
<em>The force F = 10kN</em>
<em>The piston diameter is = 100mm</em>
<em>The pressure = F/A</em>
<em> 10 * 10^3/Δ/Δ </em>
<em> P = 1273885.3503 pa</em>
<em>Then</em>
<em>Power = work/time = Force * distance /time</em>
<em> = 10 * 1000 * 0.050/10</em>
<em>which is =50 watt</em>
<em>Power =∅ΔP</em>
<em>50 = 1273885.3 ∅</em>
Answer:
Outdoors
Explanation:
Construction workers perform outdoors.
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language