Answer: hello some parts of your question is missing attached below is the missing information
The radiator of a car is a type of heat exchanger. Hot fluid coming from the car engine, called the coolant, flows through aluminum radiator tubes of thickness d that release heat to the outside air by conduction. The average temperature gradient between the coolant and the outside air is about 130 K/mm . The term ΔT/d is called the temperature gradient which is the temperature difference ΔT between coolant inside and the air outside per unit thickness of tube
answer : Total surface area = 3/2 * area of old radiator
Explanation:
we will use this relation
K = 
change in T = ΔT
therefore New Area ( A ) = 3/2 * area of old radiator
Given that the thermal conductivity is the same in the new and old radiators
“Thinking about pleasant things to pass the time” would not promote safety in the shop because it would be taking the focus away from important tasks, which in turn decreases safety.
Answer: b) False
Explanation: Microscopic energy is the the energy that is based on the molecular level in a particular energy system. Microscopic energy basically comprise with tiny particles like atoms and molecules .The sum of all microscopic form of energy e together make the internal energy .Therefore, the statement given is false because the sum of all the microscopic forms of energy of a system is quantified as internal energy not flow energy.
Answer:
8.85 Ω
Explanation:
Resistance of a wire is:
R = ρL/A
where ρ is resistivity of the material,
L is the length of the wire,
and A is the cross sectional area.
For a round wire, A = πr² = ¼πd².
For aluminum, ρ is 2.65×10⁻⁸ Ωm, or 8.69×10⁻⁸ Ωft.
Given L = 500 ft and d = 0.03 in = 0.0025 ft:
R = (8.69×10⁻⁸ Ωft) (500 ft) / (¼π (0.0025 ft)²)
R = 8.85 Ω
Answer:
//The program prompts user to input three integers and it displays them, adds and gets their average
//begin
public class Test
{
public static void Main()
{
//input intergers
int[] score = new int[3];
int avg,rem,sum = 0;
for(int i=0;i<3;i++)
{
Console.WriteLine("Enter an integer score ");
score[i] = Convert.ToInt32(Console.ReadLine());
sum = sum + score[i];
}
avg = sum/3;
rem = sum%3;
Console.WriteLine("The average of "+score[0]+","+score[1]+","+score[2]+" is "+avg +" with a remainder of "+rem);
}
}