Answer:
For
- 5.556 lb/s
For
- 7.4047 lb/s
Solution:
As per the question:
System Load = 96000 Btuh
Temperature, T = 
Temperature rise, T' =
Now,
The system load is taken to be at constant pressure, then:
Specific heat of air, 
Now, for a rise of
in temeprature:


Now, for
:


Answer:
The British Standards Institution, is the national standards body of the United Kingdom. BSI produces technical standards on a wide range of products and services and also supplies certification and standards-related services to businesses
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: c) 450 kPa
Explanation:
Boyle's Law: This law states that pressure is inversely proportional to the volume of the gas at constant temperature and number of moles.
(At constant temperature and number of moles)
where,
= initial pressure of gas = 150 kPa
= final pressure of gas = ?
= initial volume of gas = v L
= final volume of gas =
Therefore, the new pressure of the gas will be 450 kPa.
Answer:
One
For surface-mounted and pendant-hung luminaires, support rods should be placed so that they extend about _one___
<h3>what is supported mounted?</h3>
- A structure that holds up or serves as a foundation for something else. Support is a synonym for mounting.
To learn more about it, refer
to brainly.com/question/25689052
#SPJ4