Answer:
<em>55%</em>
Explanation:
hot reservoir = 1100 K
cold reservoir = 500 K
<em>This is a Carnot system</em>
For a Carnot system, maximum efficicency of the system is given as
Eff = 1 - 
where Tc = temperature of cold reservoir = 500K
Th = temperature of hot reservoir = 1100 K
Eff = 1 - 
Eff = 1 - 0.45 = 0.55 or<em> 55%</em>
Answer:
The electrical power is 96.5 W/m^2
Explanation:
The energy balance is:
Ein-Eout=0

if:
Gsky=oTsky^4
Eb=oTs^4
qc=h(Ts-Tα)


if Gl≈El(l,5800)

lt= 2*5800=11600 um-K, at this value, F=0.941

The hemispherical emissivity is equal to:

lt=2*333=666 K, at this value, F=0

The hemispherical absorptivity is equal to:

Answer:
G = $37,805.65
Explanation:
I found this on another site:
475,000 = 25,000(P/A,10%,6) + G(P/G,10%,6)
475,000 = 25,000(4.3553) + G(9.6842)
9.6842G = 366,117.50
G = $37,805.65
Answer:
The radius 4 is maximum in convex surface
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language