ave you ever seen a Rube Goldberg machine in action? You probably have, even if you didn’t know what it was. A Rube Goldberg machine is a contraption that uses a chain reaction to carry out a simple task. It performs a very basic job in a complicated way.
Answer:
a). Work transfer = 527.2 kJ
b). Heat Transfer = 197.7 kJ
Explanation:
Given:
= 5 Mpa
= 1623°C
= 1896 K
= 0.05 
Also given 
Therefore,
= 1 
R = 0.27 kJ / kg-K
= 0.8 kJ / kg-K
Also given : 
Therefore,
= 

= 0.1182 MPa
a). Work transfer, δW = 
![\left [\frac{5\times 0.05-0.1182\times 1}{1.25-1} \right ]\times 10^{6}](https://tex.z-dn.net/?f=%5Cleft%20%5B%5Cfrac%7B5%5Ctimes%200.05-0.1182%5Ctimes%201%7D%7B1.25-1%7D%20%20%5Cright%20%5D%5Ctimes%2010%5E%7B6%7D)
= 527200 J
= 527.200 kJ
b). From 1st law of thermodynamics,
Heat transfer, δQ = ΔU+δW
= 
=![\left [ \frac{\gamma -n}{\gamma -1} \right ]\times \delta W](https://tex.z-dn.net/?f=%5Cleft%20%5B%20%5Cfrac%7B%5Cgamma%20-n%7D%7B%5Cgamma%20-1%7D%20%5Cright%20%5D%5Ctimes%20%5Cdelta%20W)
=![\left [ \frac{1.4 -1.25}{1.4 -1} \right ]\times 527.200](https://tex.z-dn.net/?f=%5Cleft%20%5B%20%5Cfrac%7B1.4%20-1.25%7D%7B1.4%20-1%7D%20%5Cright%20%5D%5Ctimes%20527.200)
= 197.7 kJ
Answer:
The general rule of thumb is that the SMALLER a substance's atoms and the STRONGER the bonds, the harder the substance. Two of the strongest forms of chemical bonds are the ionic and covalent bonds.
Explanation:
The C++ code that would draw all the iterations in the selection sort process on the array is given below:
<h3>C++ Code</h3>
#include <stdio.h>
#include <stdlib.h>
int main() {
int i, temp1, temp2;
int string2[16] = { 0, 4, 2, 5, 1, 5, 6, 2, 6, 89, 21, 32, 31, 5, 32, 12 };
_Bool check = 1;
while (check) {
temp1 = string2[i];
temp2 = string2[i + 1];
if (temp1 < temp2) {
string2[i + 1] = temp1;
string2[i] = temp2;
i = 0;
} else {
i++;
if (i = 15) {
check = !check;
}
}
}
return 0;
}
Read more about C++ programming here:
brainly.com/question/20339175
#SPJ1