Answer:
A.) 0.3088
B.) 0.0017
C.) part A
Explanation:
A.)




B.)


C.) Since the seat performance for an individual pilot is more important than 39 different pilots.
Answer:
hello your question is incomplete attached below is the complete question
A) overall mean = 5.535, standard deviation ≈ 0.3239
B ) upper limit = 5.85, lower limit = 5.0
C) Not all the samples meet the contract specifications
D) fluctuation ( unstable Asphalt content )
Explanation:
B) The daily average asphalt content has to obtained in order to determine the upper and lower control limits using an average asphalt content of 5.5% +/- 0.5% everyday
The upper limit : 14 may = ( 5.8 + 5.1 ) / 2 = 5.85
The lower limit : 16 may = ( 5.2 + 4.8 ) / 2 = 5.0
attached below is the required plot
C ) Not all the samples meet the contract specifications and the samples that do not meet up are samples from :
15 may and 16 may . this is because their Asphalt contents are 6.2 and 4.8 respectively and sample number 18 and 20
D ) what can be observed is that the ASPHALT content fluctuates between the dates while the contract specification is fixed
Answer:
In a work site with more than one set of management and workers the Health and safety officers in each set should have access to the information, training and controls needed to avoid workplace accidents
Explanation:
The primary aim of a health and safety officer in a workplace is to prevent accidents,injuries and work-related sickness from occurring in the work site by creating and implementing health and safety policies according to international standards and also ensure that these policies are implemented by the sets of management and workers/staffs of the work site. to achieve these they therefore should have access to the information,training and controls needed to avoid workplace accidents
Answer: The answer is four; four
Explanation: This is because of the mixture of material used and the number of directions it causes strain I directly proportional to the number of times it causes stress.
Answer:
def extract_word_with_given_letter(sentence, letter):
words = sentence.split()
for word in words:
if letter in word.lower():
return word
return ""
# Testing the function here. ignore/remove the code below if not required
print(extract_word_with_given_letter('hello HOW are you?', 'w'))
print(extract_word_with_given_letter('hello how are you?', 'w'))