Answer:
A workstation used at an engineering firm is characteristic of an enterprise environment.
I would imagine car would still be the best means , it's tough to define without knowing where he lives and how much he travels
Answer:
total = 0
for i in range(5):
score = int(input("Enter a score: "))
total += score
average = total / 5
print("The average is " + str(average))
Explanation:
*The code is in Python.
Initialize the total as 0
Create a for loop that iterates five times. Inside the loop, ask the user to enter a score. Add the score to the total (cumulative sum)
After the loop, calculate the average, divide the total by 5
Print the average
Answer:
You can see an estimated battery life time.
Explanation:
To see it simply put your mouse over the battery icon, don't click it and it should give you the life it has left in hours:minutes format.