Create pseudocode and flowchart that will accept the evaluation score of a faculty and determine its equivalent remarks. Remarks are based on the following criteria: 4.50 – 5.00 - 4.00 – 4.49 - 3.50 – 3.99 - 3.00 – 3.49 - 2.99 below - Outstanding Very Satisfactory Satisfactory Needs Improvement Poor
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
Create pseudocode and flowchart that will accept the evaluation score of a faculty and determine its equivalent remarks. Remarks are based on the following criteria:
4.50 – 5.00 - 4.00 – 4.49 - 3.50 – 3.99 - 3.00 – 3.49 - 2.99 below -
Outstanding
Very Satisfactory Satisfactory
Needs Improvement Poor
The algorithm to determine the equivalent remarks of a faculty’s evaluation score is:
1. Get the name of the faculty.
2. Get the evaluation score of the faculty.
3. Test the score if it is greater than or equal to 4.50.
4. If the score is greater than or equal to 4.50, remarks are “Outstanding”.
However, if the score is less than 4.50, proceed to step 5.
5. Test the score if it is greater than or equal to 4.00.
6. If the score is greater than or equal to 4.00, remarks are “Very Satisfactory”. However, if the score is less than 4.00, proceed to step 7.
7. Test the score if it is greater than or equal to 3.50.
8. If the score is greater than or equal to 3.50, remarks are “Satisfactory”. However, if the score is less than 3.50, proceed to step 9.
9. Test the score if it is greater than or equal to 3.00.
10. If the score is greater than or equal to 3.00, remarks are “Needs
Improvement”. However, if the score is less than 3.00, remarks are” Poor”.
11. Display the faculty name, evaluation score, and remarks.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images