Answer:
Explanation:
The detailed analysis, with free body diagram and step by step calculations with appropriate substitution is as shown in the attached files.
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:
The program is as follows:
i = 1
while(i<11):
j = 1
while(j<=i):
print('*', end = '')
j += 1
i += 1
print()
Explanation:
Initialize i to 1
i = 1
The outer loop is repeated as long as i is less than 11
while(i<11):
Initialize j to 1
j = 1
The inner loop is repeated as long as j is less than or equal i
while(j<=i):
This prints a *
print('*', end = '')
This increments j and ends the inner loop
j += 1
This increments i
i += 1
This prints a blank and ends the inner loop
print()
The Energy discharged from the battery within 2 hours is 0.12kWh
<h3>
Energy</h3>
Energy is the capacity for doing work. It may exist in p<em>otential, kinetic, thermal, electrical, chemical, nuclear</em>. It is measured in joules.
A kilowatt hour (kWh) is a measure of how much energy you're using per hour.
From the question:
Energy discharged from the battery = 60W * 2 hours = 120 Wh = 0.12kWh
The Energy discharged from the battery within 2 hours is 0.12kWh
Find out more on energy at: brainly.com/question/582060