Answer:
Marcus would have to take an exam administered by the national council of examiners for engineering and surveying.
Explanation:
Civil engineers design, construct, and maintain projects regarding infrastructure. A civil engineer also looks after the systems in the public and private sectors like roads, buildings, and systems for water supply and sewage treatment.
In order to pursue a career in civil engineering, Marcus aims to work for the city council as a civil engineer. Therefore, he would have to take an exam administered by the national council of examiners for engineering and surveying.
Answer:
a) 42.08 ft/sec
b) 3366.33 ft³/sec
c) 0.235
d) 18.225 ft
e) 3.80 ft
Explanation:
Given:
b = 80ft
y1 = 1 ft
y2 = 10ft
a) Let's take the formula:

1 + 8f² = (20+1)²
= 8f² = 440
f² = 55
f = 7.416
For velocity of the faster moving flow, we have :
V1 = 42.08 ft/sec
b) the flow rate will be calculated as
Q = VA
VA = V1 * b *y1
= 42.08 * 80 * 1
= 3366.66 ft³/sec
c) The Froude number of the sub-critical flow.
V2.A2 = 3366.66
Where A2 = 80ft * 10ft
Solving for V2, we have:
= 4.208 ft/sec
Froude number, F2 =
F2 = 0.235
d)
= 18.225ft
e) for critical depth, we use :
= 3.80 ft
Answer:
The following statements are true:
A. For flows over a flat plate, in the laminar region, the heat transfer coefficient is decreasing in the flow direction
C. For flows over a flat plate, the transition from laminar to turbulence flow only happens for rough surface
E. In general, turbulence flows have a larger heat transfer coefficient compared to laminar flows 6.
Select ALL statements that are TRUE
B. In the hydrodynamic fully developed region, the mean velocity of the flow becomes constant
D. For internal flows, if Pr>1, the flows become hydrodynamically fully developed before becoming thermally fully developed
Explanation:
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:
you need more details but if you have to find the difference, its $2.00
Explanation:
8-6=2