Answer:
T(water)=50.32℃
T(air)=3052.6℃
Explanation:
Hello!
To solve this problem we must use the equation that defines the transfer of heat by convection, which consists of the transport of heat through fluids in this case water and air.
The equation is as follows!

Q = heat
h = heat transfer coefficient
Ts = surface temperature
T = fluid temperature
a = heat transfer area
The surface area of a cylinder is calculated as follows

Where
D=diameter=20mm=0.02m
L=leght=200mm)0.2m
solving

For water
Q=2Kw=2000W
h=5000W/m2K
a=0.01319m^2
Tα=20C

solving for ts


for air
Q=2Kw=2000W
h=50W/m2K
a=0.01319m^2
Tα=20C

Answer:
Both Technician A and B are correct.
Explanation: Both are correct, but keep note that different color coolants leave different color stains.
Answer:
Explanation:
load = 4500lb lift height= 30 ft
time =15 s
velocity=
ft/s
velocity=2 ft/s
power = force
velocity
power=
power= 9000 lb ft/s
1 hp= 550 lb ft/s
power=
hp
Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces
// from a string
class GFG
{
// Function to remove all spaces
// from a given string
static int removeSpaces(char []str)
{
// To keep track of non-space character count
int count = 0;
// Traverse the given string.
// If current character
// is not space, then place
// it at index 'count++'
for (int i = 0; i<str.length; i++)
if (str[i] != ' ')
str[count++] = str[i]; // here count is
// incremented
return count;
}
// Driver code
public static void main(String[] args)
{
char str[] = "g eeks for ge eeks ".toCharArray();
int i = removeSpaces(str);
System.out.println(String.valueOf(str).subSequence(0, i));
}
}