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
Answer:
Yes. She should be worried about corrosion. The 18-8 stainless exhibits intergranular corrosion due to high (0.08%) carbon content and gross pitting due to low molybdenum content.
Explanation: lol
Answer:
try settings and go to updates?
Explanation:
Q:What velocity does the boy attain if he throws the bricks one at a time?
Answer:Linear velocity since it moves back and firth and does not rotate like angular velocity.
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}