Answer:
Explanation:
(a) The production schedule is 4000 hour per year, or 240,000 minutes. In that time, 133,333 1/3 parts can be produced. The production of 500,000 parts in a year will require the use of ...
.5 million/(.1333... million/machine) = 3.75 machines
The demand can be satisfied by 4 machines.
__
(b) If availability is 95% then 3.75/0.95 ≈ 3.95 machines will be required.
The demand can be satisfied by 4 machines.
BRIGHT HEADLIGHTS
AND SEVERE WEATHER CONDITIONS
Answer:
0.9104
Explanation:
Suitable technology can tell you the probability.
P(-1.5≤Z≤2) ≈ 0.9104
__
A phone app gives the probability as 0.9104426667829628.
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