Answer:
there hope it can help.......
Answer:
<em>The maximum efficiency the plant will ever achieve is 75%</em>
<em>Explanation:</em>
From the question given, we recall the following:
<em>Th flames in the boiler reaches a temperature of = 1200K</em>
<em>the cooling water is = 300K</em>
<em>The maximum efficiency the plant will achieve is defined as:</em>
Let nmax = 1 - Tmin /Tmax
Where,
Tmin = Minimum Temperature in plants
Tmax = Maximum Temperature in plants
The temperature of the cooling water = Tmin = 300K
The temperature of the flames in boiler = Tmax = 1200k=K
The maximum efficiency becomes:
nmax = 1 - Tmin /Tmax
nmax = 1 - 300 /1200
nmax = 1-1/4 =0.75
nmax = 75%
Answer:
The following program is in C++.
#include <bits/stdc++.h>
using namespace std;
void lastChars(string s)
{
int l=s.length();
if(l!=0)
{
cout<<"The last character of the string is: "<<s[l-1];
}
}
int main() {
string s;//declaring a string..
getline(cin,s);//taking input of the string..
lastChars(s);//calling the function..
return 0;
}
Input:-
Alex is going home
Output:-
The last character of the string is: e
Explanation:
In the function lastChars() there is one argument that is a string.I have declared a integer variable l that stores the length of the string.If the length of the string is not 0.Then printing the last character of the string.In the main function I have called the function lastChars() with the string s that is prompted from the user.
Answer:
So the rate of heat transfer to an object is equal to the thermal conductivity of the material the object is made from, multiplied by the surface area in contact, multiplied by the difference in temperature between the two objects, divided by the thickness of the material.
Answer:
Installing solid rivets in an aircraft structure requires considerably more know-how and skill than does working with pop rivets. For one thing, you can install those hollow-core pop rivets working alone with only a simple hand operated pop riveter . . . even if you don't have access to the back side of the parts being riveted together. It is sometimes called "blind riveting".
Unfortunately, it's quite different with solid rivets. You do not enjoy the luxury of that pop rivet "blind" feature because you absolutely must have access to both sides of the parts being riveted. Sometimes it even takes two people. Furthermore, you will have to become proficient in the use of a few special tools.
Explanation:
i hope it's help