write a program that accept the name of a student score obtained in 5 courses and compute the average score of the student.your program must display the name of that student on tab 5

Accurate words in the School Subject box would help get the attention of the right tutor.

Plus, if you're expecting someone to do your work for you, you're mistaken. Please try your best on this, and then one of the tutors who knows programming will be able to help you.

Sure! Here's a Python program that accepts the name of a student and their score obtained in 5 courses. Then, it computes the average score of the student and displays the name of the student along with the average score:

```python
# Accepting the name of the student
name = input("Enter the name of the student: ")

# Accepting the score obtained in 5 courses
scores = []
for i in range(5):
score = float(input(f"Enter the score obtained in course {i+1}: "))
scores.append(score)

# Computing the average score
average_score = sum(scores) / len(scores)

# Displaying the name and average score
print(f"\nName: {name}")
for i in range(5):
print(f"Course {i+1} Score: {scores[i]}")
print(f"Average Score: {average_score}")
```

To run this program, simply copy the code into a Python editor (e.g., IDLE) or a Python integrated development environment (IDE) of your choice.

The program prompts the user to enter the name of the student. Then, in a loop, the user is prompted to enter the score obtained in each of the 5 courses. After accepting all 5 scores, the program computes the average by summing up the scores and dividing by the total number of scores. Finally, it displays the name of the student, the scores obtained in each course, and the average score.

Feel free to customize the program according to your needs or preferred programming language.