I need more details to your question
Answer:
d. 90%
Explanation:
As we know that internal combustion engine produce lot's of toxic gases to reduce these toxic gases in the environment a device is used and this device is know as current modeling converter.
Generally the efficiency of current model catalytic converter is more than 90%.But the minimum efficiency this converter is 90%.
So option d is correct.
d. 90%
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)
The largest tensile force that can be applied to the cables given a rod with diameter 1.5 is 2013.15lb
<h3>The static equilibrium is given as:</h3>
F = P (Normal force)
Formula for moment at section
M = P(4 + 1.5/2)
= 4.75p
Solve for the cross sectional area
Area = 
d = 1.5

= 1.767 inches²
<h3>Solve for inertia</h3>

= 0.2485inches⁴
Solve for the tensile force from here

30x10³ = 
30000 = 14.902 p
divide through by 14.902
2013.15 = P
The largest tensile force that can be applied to the cables given a rod with diameter 1.5 is 2013.15lb
Read more on tensile force here: brainly.com/question/25748369