Answer:
Q = 125.538 W
Explanation:
Given data:
D = 30 cm
Temperature degree celcius
Heat coefficient = 12 W/m^2 K
Efficiency 80% = 0.8
Q = 125.538 W
Answer:
Tech A
Explanation:
The amount of energy required to apply the same force with a 1:1 ratio is divided into 4, so you can apply 4 times as much force than a 1:1 ratio. efficiency and speed come into play here, but assuming the machine powering the gear can run at a unlimited RPM, 4:1 will have more force and a slower output speed than a 2:1 ratio.
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:
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
string name[5];
int age[5];
int i,j;
for ( i = 0; i<=4; i++ ) {
cout << "Please enter student's name:";
cin >> name[i];
cout << "Please enter student's age:";
cin >> age[i];
}
for (i=0;i<=4;i++){
cout<<"Age of "<< name[i]<<" is "<<age[i]<<endl;
}
}
Output of above program is displayed in figure attached.