Answer:
//This Program is written in C++
// Comments are used for explanatory purpose
#include <iostream>
using namespace std;
enum mailbox{open, close};
int box[149];
void closeAllBoxes();
void OpenClose();
void printAll();
int main()
{
closeAllBoxes();
OpenClose();
printAll();
return 0;
}
void closeAllBoxes()
{
for (int i = 0; i < 150; i++) //Iterate through from 0 to 149 which literarily means 1 to 150
{
box[i] = close; //Close all boxes
}
}
void OpenClose()
{
for(int i = 2; i < 150; i++) {
for(int j = i; j < 150; j += i) {
if (box[j] == close) //Open box if box is closed
box[j] = open;
else
box[j] = close; // Close box if box is opened
}
}
// At the end of this test, all boxes would be closed
}
void printAll()
{
for (int x = 0; x < 150; x++) //use this to test
{
if (box[x] = 1)
{
cout << "Mailbox #" << x+1 << " is closed" << endl;
// Print all close boxes
}
}
}
Explanation:
Answer:

Explanation:
Kelvin's climbing represents the <em>absolute temperature</em>. Temperature is a measure of the molecular kinetic energy of translation. If the molecules move quickly, with the same energy as in the walls of the container, which makes us feel like "heat". If the molecules do not move, the temperature is zero. 0 K.
The Celsius scale has an <em>artificial zero</em>, defined in the solidification temperature of the water. It is very useful to talk about the weather, and about some simpler technical matters. But it is artificial.
Answer:
A) 3783.952 kJ/kg
B) 34.5%
C) 2476.67 kJ/kg
Explanation:
A) Determine the rate of heat addition entering the first-stage turbine
Qin ( 1st stage ) = ( h1 - h6 ) + ( h3 - h2 )
= ( 3321.4 - 164.07 ) + ( 3438.566 - 2811.944 )
= 3783.952 kJ/kg
<em>h values are gotten from super heated table </em>
B) Determine the thermal efficiency
n = 34.5%
attached below
C) Rate of heat transfer from working fluid passing through the condenser to the cooling water
Qout = h4 - h5
= 2628.2 - 151.53
= 2476.67 kJ/kg
Answer:Videos
Video result for entrance is one of the animation category
PREVIEW
3:31
Choosing a style of entrance animation effects | Microsoft ...
Jun 7, 2015
Video result for entrance is one of the animation category
PREVIEW
4:23
Video: Animate text - PowerPoint
Microsoft Support
View all
Explanation: