Answer:
engineering that works on building structures.
Explanation:
Answer:
You need to use option '–author' along with option '-l' to print the author name of each file.
Explanation:
hopefully this helps you sorry if it doesn’t help you
Answer: they are connected in series.
Explanation:
Answer:
Explanation:
Lets do this in python, our function will import an array of double numbers, then it sort the array out, drop the first and last items, aka highest and lowest score. Finally, it averages the last 3 numbers by calculate the sum and divide by the number of items
def calculate_score(scores):
scores.sort() # sort it so that the lowest is at index 0 and the highest is at last index
drop_highest_lowest = scores[1:-1] # this will drop the lowest and highest number
average_score = sum(drop_highest_lowest)/len(drop_highest_lowest)
return average_score
Answer:
4.13 MPa
Explanation:
Given
Modulus of elasticity = E = 102 GPa
E = 102 * 10^9
Modulus resilience U = 0.79 * 106Pa
Modulus of Resilience U = y²/2E --- Make y the subject of formula
y² = 2EU
y = √(2EU)
y = √(2 * 102 * 10^9 * 0.79 * 106)
y = √1.708296E13
y = 4133153.759540044
y = 4.13E6
y = 4.13MPa