You are on page 1of 6

FLOWCHARTS

Start

Input Constants:

- FIRST_EXAM_WEIGHT = 0.10

- SECOND_EXAM_WEIGHT = 0.10

- THIRD_EXAM_WEIGHT = 0.10

- FINAL_EXAM_WEIGHT = 0.40

- COMPREHENSIVE_EXAM_WEIGHT = 0.05

- LAB_EXERCISES_WEIGHT = 0.15

- QUIZZES_WEIGHT = 0.05

- PROGRAMMING_PLATES_WEIGHT = 0.05

Input Scores:

1. Enter score for 1st Exam (0-100)

2. Enter score for 2nd Exam (0-100)

3. Enter score for 3rd Exam (0-100)

4. Enter score for Final Exam (0-100)

5. Enter score for Comprehensive Exam (0-100)

6. Enter score for Lab Exercises (0-100)

7. Enter score for Quizzes (0-100)

8. Enter score for Programming Plates (0-100)

Validation:

- Check if input scores are within the valid range (0-100)

|--- Valid Input ---| |--- Invalid Input ---|

| | | |
V | V |

Calculate Total Weighted Score:

- Calculate the weighted sum of exam scores

Grade Determination:

- Determine the grade based on the general average

|--- General Average >= 12.0 ---|

| |

V |

|--- General Average >= 10.0 ---|----> Display General Average, Grade, and Remarks

| |

V |

|--- General Average >= 8.0 ----|

| |

V |

|--- General Average >= 6.0 ----|----> End Program

| |

|--- General Average < 6.0 -----|

| |

V |

Display General Average, Grade, and Remarks:

- Display the calculated general average


- Display the determined grade

- Display the corresponding remarks

End

You might also like