Answer:
1. Equatorial Evergreen or Rainforest
2. Tropical forest
3. Mediterranean forest
4. Temperate broad-leaved forest
5. Warm temperate forest
Explanation:
Answer:
6.37 inch
Explanation:
Thinking process:
We need to know the flow rate of the fluid through the cross sectional pipe. Let this rate be denoted by Q.
To determine the pressure drop in the pipe:
Using the Bernoulli equation for mass conservation:

thus

The largest pressure drop (P1-P2) will occur with the largest f, which occurs with the smallest Reynolds number, Re or the largest V.
Since the viscosity of the water increases with temperature decrease, we consider coldest case at T = 50⁰F
from the tables
Re= 2.01 × 10⁵
Hence, f = 0.018
Therefore, pressure drop, (P1-P2)/p = 2.70 ft
This occurs at ae presure change of 1.17 psi
Correlating with the chart, we find that the diameter will be D= 0.513
= <u>6.37 in Ans</u>
Answer:
The rate of heat generation in the wire per unit volume is 5.79×10^7 Btu/hrft^3
Heat flux is 9.67×10^7 Btu/hrft^2
Explanation:
Rate of heat generation = 1000 W = 1000/0.29307 = 3412.15 Btu/hr
Area (A) = πD^2/4
Diameter (D) = 0.08 inches = 0.08 in × 3.2808 ft/39.37 in = 0.0067 ft
A = 3.142×0.0067^2/4 = 3.53×10^-5 ft^2
Volume (V) = A × Length
L = 20 inches = 20 in × 3.2808 ft/39.37 in = 1.67 ft
V = 3.53×10^-5 × 1.67 = 5.8951×10^-5 ft^3
Rate of heat generation in the wire per unit volume = 3412.15 Btu/hr ÷ 5.8951×10^-5 ft^3 = 5.79×10^7 Btu/hrft^3
Heat flux = 3412.15 Btu/hr ÷ 3.53×10^-5 ft^2 = 9.67×10^7 Btu/hrft^2
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