Write a program that reads the student mark and absent percentage and displays a proper message for student status considering the pass mark is 60 and the maximum
allowed absent percentage rate is 15%. As an optional challenge you may enhance the program by considering some absences are excused and shall not be counted.



Answer :

To write a program that reads the student mark and absent percentage and displays a proper message for student status considering the pass mark is 60 and the maximum allowed absent percentage rate is 15%, you would need an algorithm and it is given below.

The Algorithm

Step 1: Start the execution of the program

Step 2: Read mark and absent percentage

Step 3: Checking if the given mark is greater than 60, if yes, displays the preassigned message

Step 4: If the mark is above 60

Step 5: Display, "Checking your absent record"

Step 6: If the absent percentage record is less than or equals to 15%

Step 7: Display, "This is a pass mark"

Step 8: Else, display "You failed"

Step 9: End program

What is an Algorithm?

This refers to the sequence of steps that are followed in order to help write a program for use.

Hence, To write a program that reads the student mark and absent percentage and displays a proper message for student status considering the pass mark is 60 and the maximum allowed absent percentage rate is 15%, you would need an algorithm and it is given above.

.

Read more about algorithms here:

https://brainly.com/question/24953880

#SPJ1