Design a flow chart that will accept the scores of 100 students in 8 courses.the flow chart should compute and display the average score of each student in 8 courses

Try do something

Draw a flowchart to input the scores of students in 8courses and find the average

To design a flowchart that accepts scores of 100 students in 8 courses and computes and displays the average score for each student, you can follow these steps:

1. Begin the flowchart with a start symbol.
2. Create a loop to input the scores for each student and each course. Start by setting the student count to 1 and the course count to 1.
3. Within the loop, display a prompt to enter the score for a specific student and course combination.
4. Input the score for the current student and course.
5. Add the current score to a running total for the current student.
6. Increment the course count.
7. Check if all courses for the current student have been processed. If not, return to the step #3.
8. Calculate the average score for the current student by dividing the running total by the number of courses.
9. Display the average score for the current student.
10. Add the average score to a running total of all students' averages.
11. Increment the student count.
12. Check if all students have been processed. If not, return to step #2.
13. Calculate the overall average score by dividing the total averages sum by the number of students.
14. End the flowchart with an end symbol.

Here is how the final flowchart may look like:

```
+------------------+
| START |
+------------------+
|
v
+-------------------------------+
| SET studentCount = 1 |
| SET totalAverages = 0 |
+-------------------------------+
|
v
+-----------------------------+
| WHILE studentCount <= 100 |
+-----------------------------+
|
v
+------------------------------+
| SET courseCount = 1 |
| SET totalScore = 0 |
+------------------------------+
|
v
+----------------------------+
| WHILE courseCount <= 8 |
+----------------------------+
|
v
+----------------------------+
| PROMPT "Enter score: " |
| INPUT score |
| totalScore = totalScore + score |
| courseCount = courseCount + 1 |
+----------------------------+
|
v
+-----------------------+
| END OF COURSE CHECK |
+-----------------------+
|
v
+-------------------------------+
| IF courseCount > 8 |
| average = totalScore / 8 |
| DISPLAY average |
| totalAverages = totalAverages + average |
| studentCount = studentCount + 1 |
+-------------------------------+
|
v
+---------------------------+
| END OF STUDENT CHECK |
+---------------------------+
|
v
+-----------------------------+
| IF studentCount > 100 |
| overallAverage = totalAverages / 100 |
| DISPLAY overallAverage |
+-----------------------------+
|
v
+-------------------+
| END |
+-------------------+

```

Please note that the flowchart assumes each student will have exactly 8 courses and does not include any error handling or input validation.