Answer:
Explanation:
Hello!
To solve this problem you must follow the following steps, which are fully registered in the attached image.
1. Draw the complete outline of the problem.
2. Through laboratory tests, thermodynamic tables were developed, these allow to know all the thermodynamic properties of a substance (entropy, enthalpy, pressure, specific volume, internal energy etc ..)
through prior knowledge of two other properties.
3. Use temodynamic tables to find the density of water in state 1, by means of temperature and quality, with this value and volume we can find the mass.
3. Use thermodynamic tables to find the internal energy in state 1 and two using temperature and quality.
4. uses the first law of thermodynamics that states that the energy in a system is always conserved, replaces the previously found values and finds the work done.
5. draw the pV diagram using the 300F isothermal line
Answer:
There is not going to be pressure build up in the system,that is isobaric process.
Explanation:
Assumptions to be made
1. No mass is gained or lost during the heating process.
2. There are no friction losses,so work is transmitted efficiently.
3. It was started the water in the drum and its surrounding have same temperature.
4. This system is closed,so there is no mass transfer across its boundaries.
Answer:
The solution code is written in Java.
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner inNum = new Scanner(System.in);
- System.out.print("Enter number of toss: ");
- int num = inNum.nextInt();
-
- for(int i=0; i < num; i++){
- System.out.println(toss());
- }
- }
-
- public static String toss(){
- String option[] = {"heads", "tails"};
- Random rand = new Random();
- return option[rand.nextInt(2)];
- }
- }
Explanation:
Firstly, we create a function <em>toss()</em> with no parameter but will return a string (Line 14). Within the function body, create an option array with two elements, "heads" and "tails" (Line 15). Next create a Random object (Line 16) and use <em>nextInt()</em> method to get random value either 0 or 1. Please note we need to pass the value of 2 into <em>nextInx() </em>method to ensure the random value generated is either 0 or 1. We use this generate random value as an index of <em>option </em>array and return either "heads" or "tails" as output (Line 17).
In the main program, we create Scanner object and use it to prompt user to input an number for how many times to toss the coin (Line 6 - 7). Next, we use the input num to control how many times a for loop should run (Line 9). In each round of the loop, call the function <em>toss() </em>and print the output to terminal (Line 10).
Answer:
25 mm = 0.984252 inches
Explanation:
Millimeter and inches are both units of distance. The conversion of millimeter into inches is shown below:
<u>1 mm = 1/25.4 inches</u>
From the question, we have to convert 25 mm into inches
Thus,
<u>25 mm = (1/25.4)*25 inches</u>
So,

Thus, solving we get:
<u>25 mm = 0.984252 inches</u>