Answer:well u can use to make a shelter but that's all I can think of ??
Explanation:
Answer:
i want coins sorry use a calculator or sum
Explanation:
kk
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
Answer:
Hello your question has some missing information below are the missing information
The refrigerant enters the compressor as saturated vapor at 140kPa Determine The coefficient of performance of this heat pump
answer : 2.49
Explanation:
For vapor-compression refrigeration cycle
P1 = P4 ; P1 = 140 kPa
P2( pressure at inlet ) = P3 ( pressure at outlet ) ; P2 = 800 kPa
<u>From pressure table of R 134a refrigerant</u>
h1 ( enthalpy of saturated vapor at 140kPa ) = 239.16 kJ/kg
h2 ( enthalpy of saturated liquid at P2 = 800 kPa and t = 60°C )
= 296.8kJ/kg
h3 ( enthalpy of saturated liquid at P3 = 800 kPa ) = 95.47 kJ/kg
also h4 = 95.47 kJ/kg
To determine the coefficient of performance
Cop = ( h1 - h4 ) / ( h2 - h1 )
∴ Cop = 2.49