Answer:
Wrenches are made in various shapes and sizes and are used for gripping, fastening, turning, tightening and loosening things like pipes, pipe fittings, nuts and bolts. There are basically two major kinds of wrenches: Pipe wrenches used in plumbing for gripping round (cylindrical) things.
Answer:
Explanation:
Obtain the following properties at 6MPa and 600°C from the table "Superheated water".

Obtain the following properties at 10kPa from the table "saturated water"

Calculate the enthalpy at exit of the turbine using the energy balance equation.

Since, the process is isentropic process 

Use the isentropic relations:

Calculate the enthalpy at isentropic state 2s.

a.)
Calculate the isentropic turbine efficiency.

b.)
Find the quality of the water at state 2
since
at 10KPa <
<
at 10KPa
Therefore, state 2 is in two-phase region.

Calculate the entropy at state 2.

Calculate the rate of entropy production.

since, Q = 0

Snap rings, and bearings can be used to keep a gear on a shaft, hope this helps!!
The rate of gain for the high reservoir would be 780 kj/s.
A. η = 35%

W = 
W = 420 kj/s
Q2 = Q1-W
= 1200-420
= 780 kJ/S
<h3>What is the workdone by this engine?</h3>
B. W = 420 kj/s
= 420x1000 w
= 4.2x10⁵W
The work done is 4.2x10⁵W
c. 780/308 - 1200/1000
= 2.532 - 1.2
= 1.332kj
The total enthropy gain is 1.332kj
D. Q1 = 1200
T1 = 1000

<h3>Cournot efficiency = W/Q1</h3>
= 1200 - 369.6/1200
= 69.2 percent
change in s is zero for the reversible heat engine.
Read more on enthropy here: brainly.com/question/6364271
Answer:
// Program is written in Java Programming Language
// Comments are used for explanatory purpose
import java.util.*;
public class FlipCoin
{
public static void main(String[] args)
{
// Declare Scanner
Scanner input = new Scanner (System.in);
int flips;
// Prompt to enter number of toss or flips
System.out.print("Number of Flips: ");
flips = input.nextInt();
if (flips > 0)
{
HeadsOrTails();
}
}
}
public static String HeadsOrTails(Random rand)
{
// Simulate the coin tosses.
for (int count = 0; count < flips; count++)
{
rand = new Random();
if (rand.nextInt(2) == 0) {
System.out.println("Tails"); }
else {
System.out.println("Heads"); }
rand = 0;
}
}