Answer:
I don't really know but i have some info for you...
Explanation:
The cold forging manufacturing process increases the strength of a metal through strain hardening at a room temperature. On the contrary the hot forging manufacturing process keeps materials from strain hardening at high temperature, which results in optimum yield strength, low hardness and high ductility.
Answer:
0.14% probability of observing more than 4 errors in the carpet
Explanation:
When we only have the mean, we use the Poisson distribution.
In a Poisson distribution, the probability that X represents the number of successes of a random variable is given by the following formula:

In which
x is the number of sucesses
e = 2.71828 is the Euler number
is the mean in the given interval.
The number of weaving errors in a twenty-foot by ten-foot roll of carpet has a mean of 0.8.
This means that 
What is the probability of observing more than 4 errors in the carpet
Either we observe 4 or less errors, or we observe more than 4. The sum of the probabilities of these outcomes is 1. So

We want P(X > 4). Then

In which









0.14% probability of observing more than 4 errors in the carpet
Answer:
# Program is written in python
# 22.1 Using the count method, find the number of occurrences of the character 's' in the string 'mississippi'.
# initializing string
Stringtocheck = "mississippi"
# using count() to get count of s
counter = Stringtocheck.count('s')
# printing result
print ("Count of s is : " + str(counter))
# 2.2 In the string 'mississippi', replace all occurrences of the substring 'iss' with 'ox
# Here, we'll make use of replace() method
# Prints the string by replacing iss by ox
print(Stringtocheck.replace("iss", "ox"))
#2.3 Find the index of the first occurrence of 'p' in 'mississippi'
# declare substring
substring = 'p'
# Find index
index = Stringtocheck.find(substring)
# Print index
print(index)
# End of program
It would be 72cm bc u need to add up all the line in the back to
Answer:
450,000m = 450km = 4.5E5
32,600,000W = 32.6MW = 3.26E7
59,700,000,000cal = 59.7Gcal = 5.97E10
0.000000083s = 83ns = 8.3E-8
35,000Ω = 35kΩ = 3.5E4
Explanation:
Giga = 1,000,000,000
Mega = 1,000,000
kilo = 1,000
unit = 1
deci = .1
centi = .01
milli = .001
micro = .000001
nano = .0000000001
pico = .000000000001
You should be able to look at these and convert between them in seconds if you want to pursue anything in engineering.