Answer:
Entropy:
Entropy is the measure of randomness of system.In other words the entropy is the measurement of tendency of system towards the disorder.
The concept of entropy arise from second law of thermodynamics.It is given as follows

Entropy is a extensive property of system .
Entropy of universe = Entropy of system + Entropy of surrounding.
The entropy of the system can be zero,positive and negative.But entropy of the surrounding can not be negative,but it can be zero or positive.
Actually the concept of entropy is difficult to understand because we can not visualize because it is not like beam and like rods.Only we have to realize that there is entropy.
Answer:
(a) BP = 11.99 KPa
(b) h = 2 m
Explanation:
(a)
Since, the fluid pressure and blood pressure balance each other. Therefore:
BP = ρgh
where,
BP = Blood Pressure
ρ = density of fluid = 1020 kg/m³
g = acceleration due to gravity = 9.8 m/s²
h = height of fluid = 1.2 m
Therefore,
BP = (1020 kg/m³)(9.8 m/s²)(1.2 m)
<u>BP = 11995.2 Pa = 11.99 KPa</u>
(b)
Again using the equation:
P = ρgh
with data:
P = Gauge Pressure = 20 KPa = 20000 Pa
ρ = density of fluid = 1020 kg/m³
g = acceleration due to gravity = 9.8 m/s²
h = height of fluid = ?
Therefore,
20000 Pa = (1020 kg/m³)(9.8 m/s²)h
<u>h = 2 m</u>
Explanation:
For true Strain:
step 1:
E true = Ln(1 + 0.5 ) = 0.40
Step 2:
E true = Ln(1 + 0.33 ) = 0.29
By single step process:
E true = Ln(1 + 1 ) = 0.69
total strain of step process = 0.40 + 0.29 = 0.69 units
SO TRUE STRAIN IS ADDITIVE.
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
Answer:
True
Explanation:
The CNC is the primary interface between the machine operator and the machine.