Answer:
The solution and explanation is attached.
Explanation:
Answer:
1072 acre foot
1331424000 kg
Explanation:
1 feet has 12 inches, so 2 in is 0.167 feet.
1 km^2 has 1 million m^2.
1 acre is 4074 m^2.
So, 1 km is 247 acres.
Then 26 km^2 is 6422 acres.
So, the volume of water is
6422 * 0.167 = 1072 acre-foot
Since one cubic meter of water has 1000 kg
One inch is 25.4 mm = 0.0254 m
One feet is 12 * 0.0254 = 0.3048 m
An acre-feet has a volume of
4074*0.3048 = 1242 m^3
And that is a mass of water of
1242 * 1000 = 1242000 kg/acre-feet
Therefore the mass of rainwater in the town is of
1072 * 1242000 = 1331424000 kg = 1331424 tons
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:
Exit Temperature= T2=563.6 °R
Exit Pressure= P2= 30.06 lbf/in^2
Mass Flow rate=1.276 lb/sec
Explanation:
Answer is explained in detailed way in the attached files.