Answer:
Final length= 746.175 mm
Explanation:
Given that Length of aluminium at 223 C is 750 mm.As we know that when temperature of material increases or decreases then dimensions of material also increases or decreases respectively with temperature.
Here temperature of aluminium decreases so the final length of aluminium decreases .
As we know that
Now by putting the values
ΔL=3.82 mm
So final length =750-3.82 mm
Final length= 746.175 mm
Answer:
The total tube surface area in m² required to achieve an air outlet temperature of 850 K is 192.3 m²
Explanation:
Here we have the heat Q given as follows;
Q = 15 × 1075 × (1100 - ) = 10 × 1075 × (850 - 300) = 5912500 J
∴ 1100 - = 1100/3
= 733.33 K
Where
= Arithmetic mean temperature difference
= Inlet temperature of the gas = 1100 K
= Outlet temperature of the gas = 733.33 K
= Inlet temperature of the air = 300 K
= Outlet temperature of the air = 850 K
Hence, plugging in the values, we have;
Hence, from;
, we have
5912500 = 90 × A × 341.67
Hence, the total tube surface area in m² required to achieve an air outlet temperature of 850 K = 192.3 m².
uniform
welcome 2 Ghana African state western region
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:
A
Explanation:
He should get a job in engineering to see what it's like to work in the field.