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
The startup mode you would use is Safe Mode. To get to safe mode, you have to hit f8 repeatedly, and there is 3 options for safe mode. You should find a option "Safe Mode with networking". Hit that, and you should be able to boot up your computer. I hope this helped you! :D
<span>A batch processing system is the execution of a series of jobs in a program on a computer without manual intervention</span>