Answer:
Rate of heat transfer to river=1200MW
So the actual amount of heat rejected ti the river will be less as there will some heat loss to surrounding and in pipes
Explanation:
In order to find the actual heat transfer rate is lower or higher than its value we will first find the rate of heat transfer to power plant:


From First law of thermodynamics:
Rate of heat transfer to river=heat transfer to power plant-work done
Rate of heat transfer to river=2000-800
Rate of heat transfer to river=1200MW
So the actual amount of heat rejected ti the river will be less as there will some heat loss to surrounding and in pipes.
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration
A chemical engineer can clearly see from this kind of test if a substance stays in a system and builds up or if it just passes through.
<h3>What is a chemical engineer?</h3>
- Processes for manufacturing chemicals are created and designed by chemical engineers.
- To solve issues involving the manufacture or usage of chemicals, fuel, medications, food, and many other goods, chemical engineers use the concepts of chemistry, biology, physics, and math.
- A wide range of sectors, including petrochemicals and energy in general, polymers, sophisticated materials, microelectronics, pharmaceuticals, biotechnology, foods, paper, dyes, and fertilizers, have a significant demand for chemical engineers.
- Chemical engineering is undoubtedly difficult because it requires a lot of physics and math, as well as a significant number of exams at the degree level.
To learn more about chemical engineer, refer to:
brainly.com/question/23542721
#SPJ4
1.i am superman
2.175 175 175
3.em dilisues
4.bye classmate magbabalik pa ako
Answer:
#include <iostream>
#include <iomanip>
using namespace std;
class pointType
{
public:
pointType()
{
x=0;
y=0;
}
pointType::pointType(double x,double y)
{
this->x = x;
this->y = y;
}
void pointType::setPoint(double x,double y)
{
this->x=x;
this->y=y;
}
void pointType::print()
{
cout<<"("<<x<<","<<y<<")\n";
}
double pointType::getX()
{return x;
}
double pointType::getY()
{return y;
}
private:
double x,y;
};
int main()
{
pointType p2;
double x,y;
cout<<"Enter an x Coordinate for point ";
cin>>x;
cout<<"Enter an y Coordinate for point ";
cin>>y;
p2.setPoint(x,y);
p2.print();
system("pause");
return 0;
}