C. seems like the best answer. i may be wrong so don’t quote me on that
Answer:
the volume of water that will be required to bring these soils to the optimum moisture content is 1859 kL
Explanation:
Given that;
volume of cut = 25,100 m³
Volume of dry soil fill = 23,300 m³
Weight of the soil will be;
⇒ 93% × 18.3 kN/m³ × 23,300 m³
= 0.93 × 426390 kN 3
= 396,542.7 kN
Optimum moisture content = 12.9 %
Required amount of moisture = (12.9 - 8.3)% = 4.6 %
So,
Weight of water required = 4.6% × 396,542.7 = 18241 kN
Volume of water required = 18241 / 9.81 = 1859 m³
Volume of water required = 1859 kL
Therefore, the volume of water that will be required to bring these soils to the optimum moisture content is 1859 kL
Answer:
DeMorgan equivalent :
F = B + C
F' = ⁻B⁻+⁻C⁻ = ⁻BC⁻
Explanation:
Attached below is the logic gate implementation diagram and the DeMorgan equivalent Boolean statement as requested in part A and B
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)