Answer:
93.57 KJ/s
Explanation:
Rate of heat transfer from the steam to the cooling water = mass rate × Heat of vaporization of water at 40 °C
H vaporization of water 40 °C at saturation pressure = 2406.0 kJ / Kg
rate of heat transfer = 2406.0 kJ / Kg × 140 Kg / ( 60 × 60s) = 93.57 KJ/s
Answer:
<em>No, the velocity profile does not change in the flow direction.</em>
Explanation:
In a fluid flow in a circular pipe, the boundary layer thickness increases in the direction of flow, until it reaches the center of the pipe, and fill the whole pipe. If the density, and other properties of the fluid does not change either by heating or cooling of the pipe, <em>then the velocity profile downstream becomes fully developed, and constant, and does not change in the direction of flow.</em>
Answer: Rupture strength
Explanation: Rupture strength is the strength of a material that is bearable till the point before the breakage by the tensile strength applied on it. This term is mentioned when there is a sort of deformation in the material due to tension.So, rupture will occur before whenever there are chances of failing and the material is still able to bear stresses before failing.
Answer:

Just draw a line from point D join to point E
The triangle formed DME will be congruent to AMC
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2