Answer:
Your question lacks the time required hence i will calculate the Average flow rate using a general concept and an assumed time value of 25 seconds
ANSWER : 104.904 ft^3/sec
Explanation:
General concept : Average flow rate is the volume of fluid per unit time through an area
Hence the average flow rate of the air conditioning unit of this room
Volume of the room / time taken for the air to cycle the room = v / t
assuming the time taken = 25 seconds
volume of room = width * length * height
= 14.1 * 15.5 * 12 = 2622.6 ft^3
Average flow rate = V/ t
= 2622.6 / 25 = 104.904 ft^3/sec
A. The factor by which a machine multiplies a force
Answer:
Aerobic biological treatment process
Explanation:
Aerobic biological treatment process in which micro-organisms, in the presence of oxygen, metabolize organic waste matter in the water, thereby producing more micro-organisms and inorganic waste matter like CO₂, NH₃ and H₂O.
Answer:
Clouds
Explanation:
It is created by trapped dust and water.
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