Answer:
a. 51.84Kj
b. 2808.99 W/m^2
c. 11.75%
Explanation:
Amount of heat this resistor dissipates during a 24-hour period
= amount of power dissipated * time
= 0.6 * 24 = 14.4 Watt hour
(Note 3.6Watt hour = 1Kj )
=14.4*3.6 = 51.84Kj
Heat flux = amount of power dissipated/ surface area
surface area = area of the two circular end + area of the curve surface
= 2.136 *10^-4
Heat flux = = 2808.99
fraction of heat dissipated from the top and bottom surface
=11.75%
Explanation:
Solder Bridges
Plating Voids
Non-wetting or dewetting.
Answer:
Of course music plays crucial role
Answer:
Rock and orange juice
Explanation:
The mystery matter to be submerged in water must be a solid, therefore we can eliminate the Lemonade and Milk, and Orange juice and Helium, as these pairs do not contain solids. The graduated cylinder is used to measure the volume of a liquid, therefore the only remaining option is Rock and Orange Juice.
Answer:
Explanation along with code and output results is provided below.
C++ Code:
#include <iostream>
using namespace std;
int main()
{
int year;
cout<<"Enter the car model year."<<endl;
cin>>year;
if (year<=1969)
{
cout<<"Few safety features."<<endl;
}
else if (year>=1970 && year<1989)
{
cout<<"Probably has seat belts."<<endl;
}
else if (year>=1990 && year<1999)
{
cout<<"Probably has antilock brakes."<<endl;
}
else if (year>=2000)
{
cout<<"Probably has airbags."<<endl;
}
return 0;
}
Explanation:
The problem was to print feature messages of a car given its model year.
If else conditions are being used incorporate the logic. The code has been tested with several inputs and got correct output results.
Output:
Enter the car model year.
1961
Few safety features.
Enter the car model year.
1975
Probably has seat belts.
Enter the car model year.
1994
Probably has antilock brakes.
Enter the car model year.
2005
Probably has airbags.