Write the pseudocode for the scenario below. A teacher has a class of 10 learners who recently wrote a test. The teacher would like to determine the average class mark and the name of the student with the highest mark. Verify that the marks input by the teacher fall in the range 0 to 100 . For any mark input that is outside of this range, the user must repeat the process and input the mark until it is within the range. The values below are an example of the names and marks for this scenario and explanation. The teacher will input their own data. Example Data You are required to do the following for the teacher: Display the student's name with their corresponding mark and category. Any learner with a mark equal to or above 75 display "Distinction" next to their mark. For those learners with a mark less than 50, display "Fail". All the other students must have the word "Pass" next to their mark. Display the name of the leamer with the highest mark. - Calculate and display the average class mark. Comment your pseudocode and use descriptive and appropriate messages/labels for the output. The report must display output as follows: Write the pseudocode for the scenario below. A teacher has a class of 10 learners who recently wrote a test. The teacher would like to determine the average class mark and the name of the student with the highest mark. Verify that the marks input by the teacher fall in the range 0 to 100 . For any mark input that is outside of this range, the user must repeat the process and input the mark until it is within the range. The values below are an example of the names and marks for this scenario and explanation. The teacher will input their own data. Example Data You are required to do the following for the teacher: - Display the student's name with their corresponding mark and category. Any learner with a mark equal to or above 75 display "Distinction" next to their mark. For those learners with a mark less than 50, display "Fail". All the other students must have the word "Pass" next to their mark. Display the name of the learner with the highest mark. Calculate and display the average class mark. Comment your pseudocode and use descriptive and appropriate messages/labels for the output. The report must display output as follows: [TOTAL MARKS: 100]