That means “ if possible then link”
Answer:
The value of heat transferred watt per foot length Q = 54.78 Watt per foot length.
Explanation:
Diameter of pipe = 2 in = 0.0508 m
Steam temperature = 300 F = 422.04 K
Duct temperature = 70 F = 294.26 K
Emmisivity of surface 1 = 0.79
Emmisivity of surface 2 = 0.276
Net emmisivity of both surfaces ∈ = 0.25
Stefan volazman constant = 5.67 ×
Heat transfer per foot length is given by
Q = ∈ A ( ) ------ (1)
Put all the values in equation (1) , we get
Q = 0.25 × 5.67 × × 3.14 × 0.0508 × 1 × ( )
Q = 54.78 Watt per foot.
This is the value of heat transferred watt per foot length.
Answer:
a) 0.489
b) 54.42 kg/s
c) 247.36 kW/s
Explanation:
Note that all the initial enthalpy and entropy values were gotten from the tables.
See the attachment for calculations
Answer:
Alice is correct.
The loop are dependent.
Explanation:
for(i = 1; i <= N; i = (i*2)+17 )
for(k = i+1; k <= i+N; k = k+1) // notice i in i+1 and i+N
printf("B")
This is a nested for-loop.
After the first for-loop opening, there is no block of statement to be executed rather a for-loop is called again. And the second for-loop uses the value of i from the first for-loop. The value of N is both called from outside the loop.
So, the second for-loop depend on the first for loop to get the value of i. For clarity purpose, code indentation or use of curly brace is advised.