Computer Science for IGCSE & O level - Algorithm Design And Problem Solving (Section 9 - No. 1)
What is the purpose of the following algorithm: ```IF PercentageMark < 0 OR PercentageMark > 100 THEN OUTPUT "Fail" ELSE OUTPUT "Pass"```?
To calculate the grade based on the percentage mark.
To validate the input of percentage marks.
To sort the percentage marks in ascending order.
To determine the average percentage mark.
Explanation
The algorithm is performing input validation, checking if the entered percentage mark falls within an acceptable range (0-100).
Comments (0)
