Answer:
the pressure at a closed valve attached to the tank 10 ft above its bottom is 37.88 psi
Explanation:
Given that;
depth 1 = 71 ft
depth 2 = 10 ft
pressure p = 17 psi = 2448 lb/ft²
depth h = 71 ft - 10 ft = 61 ft
we know that;
p = P_air + yh
where y is the specific weight of ethyl alcohol ( 49.3 lb/ft³ )
so we substitute;
p = 2448 + ( 49.3 × 61 )
= 2448 + 3007.3
= 5455.3 lb/ft³
= 37.88 psi
Therefore, the pressure at a closed valve attached to the tank 10 ft above its bottom is 37.88 psi
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Answer:
In the simplest terms, bioremediation is a waste management process using live organisms to neutralize or remove harmful pollutants from contaminated areas. Bioremediation is an environmental science that amplifies natural biological actions to remedy or remediate polluted groundwater and contaminated soil.
Explanation:
Answer:Decay rate constant,k = 0.00376/hr
Explanation:
IsT Order Rate of reaction is given as
In At/ Ao = -Kt
where [A]t is the final concentration at time t and [A]o is the inital concentration at time 0, and k is the first-order rate constant.
Initial concentration = 80 mg/L
Final concentration = 50 mg/L
Velocity = 40 m/hr
Distance= 5000 m
Time taken = Distance / Time
5000m / 40m/hr = 125 hr
In At/ Ao = -Kt
In 50/80 = -Kt
-0.47 = -kt
- K= -0.47 / 125
k = 0.00376
Decay rate constant,k = 0.00376/hr
The precautions that should be taken to avoid the overloading of domestic electric circuits are:
- Do not put high voltage wires in one socket.
- Do not use many electric appliances of high power at the same time.
<h3>What are electric circuits?</h3>
Electric circuits are wires or devices that give electricity to devices that run on electricity. Running of electric devices should be done carefully because our body can come in contact with the current.
Thus, the precautions are to keep high voltage lines away from one socket. Use only a few high-power electric appliances at once.
To learn more about electric circuits, refer to the below link:
brainly.com/question/28221759
#SPJ4