flowchart to find average of 10 subjects.

add the 10 scores and divide the sum by 10

turn the "add the 10 scores" into a loop using the usual flowchart conventions. I assume your text has some examples. I know google does.

To create a flowchart to find the average of 10 subjects, you can follow these steps:

Step 1: Start the flowchart.

Step 2: Define variables and initialize them. For example, create a variable called "sum" and set it to 0, and create a variable called "count" and set it to 0.

Step 3: Create a loop to repeat 10 times. This loop will represent each subject.

Step 4: Inside the loop, ask the user to enter the marks/grade for the current subject.

Step 5: Add the marks/grade entered by the user to the "sum" variable.

Step 6: Increment the "count" variable by 1 to keep track of the number of subjects.

Step 7: Check if the loop has completed 10 iterations. If not, go back to the beginning of the loop.

Step 8: Calculate the average by dividing the "sum" variable by the "count" variable.

Step 9: Display the average as the final result.

Step 10: End the flowchart.

Note: In the flowchart, you can use appropriate symbols for start/end, decision, input/output, and process/control flow.

Remember, a flowchart is a graphical representation of a process. It helps visualize the steps and logic involved in a task or problem.