Answer:
The fluid level difference in the manometer arm = 22.56 ft.
Explanation:
Assumption: The fluid in the manometer is incompressible, that is, its density is constant.
The fluid level difference between the two arms of the manometer gives the gage pressure of the air in the tank.
And P(gage) = ρgh
ρ = density of the manometer fluid = 60 lbm/ft³
g = acceleration due to gravity = 32.2 ft/s²
ρg = 60 × 32.2 = 1932 lbm/ft²s²
ρg = 1932 lbm/ft²s² × 1lbf.s²/32.2lbm.ft = 60 lbf/ft³
h = fluid level difference between the two arms of the manometer = ?
P(gage) = 9.4 psig = 9.4 × 144 = 1353.6 lbf/ft²
1353.6 = ρg × h = 60 lbf/ft³ × h
h = 1353.6/60 = 22.56 ft
A diagrammatic representation of this setup is presented in the attached image.
Hope this helps!
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Answer:
True
Explanation:
The tensile forces are small in most arches and usually negligible.
Answer:

Explanation:
In this problem you need to define the force that acts upon a beam in a 3 point bending problem. I put a picture of the problem taken from Wikipedia:
In this problem the flexural strength is defined with the following formula:

where F is the force applied, L the length between the two rods, b the width of the ceramic block and d it's height.
The force is then defined as:
