Answer:
The 5/16 – 24 UNF is stronger because it has more tensile load capacity.
Tensile load capacity for M8 -1.25 = 5670 lb
Tensile load capacity for M8 -1 = 6067 lb
Explanation:
For 5/16 - 18 UNC thread:
D = 0.3125
n = 18
Therefore the tensile load capacity is = 100000 X (0.7854 X (0.3125 - 0.9743/ 18) ^2
= 5243 lb.
Similarly for 5/16 - 24 UNF , only the n value changes to 24
we get the tensile load capacity = 5806.6 lb
Hence the 5/16 – 24 UNF is stronger because it has more tensile load capacity.
For metric Bolts:
We have to consider all values in SI units
Strength = 689 MPa
We get for M8 -1.25:
Tensile load capacity as = 689 X 36.6 = 25223 N = 5670 lb
For M8 -1:
Tensile load capacity as = 689 X 39.167 = 26986 N = 6067lb
Answer:
q=39.15 W/m²
Explanation:
We know that
Thermal resistance due to conductivity given as
R=L/KA
Thermal resistance due to heat transfer coefficient given as
R=1/hA
Total thermal resistance

Now by putting the values


We know that
Q=ΔT/R


So heat transfer per unit volume is 39.15 W/m²
q=39.15 W/m²
Answer:
Explanation:
Products of oil in our everyday life:
(1) Petro-Chemical Feedstock: These are by product of Refining of Oil which it is used extensively to make PET bottles, Paints, Polyester Shirts, Pocket combs e.t.c
(2) Asphalt : Used extensively to make Motor Road, highways
(3) Plastics : we use plastics in our everyday life, this is also a product of Refining of crude oil e.g PVC, Telephone casing, Tapes e.t.c
(4) Lubricating Oil/Grease : This is another product from crude oil Fractional Distillation.
(5) Propane/ Cooking Gas: This is also a product from oil which is used in our everyday life for cooking, grilling etc.
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;
}
}