Write algorithms to solve different programming problems using flowchart and pseudo-code. Problem: The program will display the following when run: 1. Display Pass/Fail Data 2. Display Final Grade Classification 3. Display Mean and Median Score Call the following function when the user selects from the menu: 1. Determine the number of students who passed (>=75%) and failed (<75%). Plot also the pass/fail data using a pie chart. 2. Classify and plot (using bar graph) the final grades based on the following: - Expert (95%-100%) - Competent (85%-94%) - Novice (75%-84%) - Beginner (<75%) 3. Calculate the mean and median final grade. Plot the mean and median score with the plot of all the final grades. Create an algorithm for the programming problem above using pseudo-code or flowchart.
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:
Write algorithms to solve different
Problem:
The program will display the following when run: | |
1. Display Pass/Fail Data | |
2. Display Final Grade Classification | |
3. Display Mean and Median Score | |
Call the following function when the user selects from the menu: | |
1. Determine the number of students who passed (>=75%) and failed (<75%). Plot also the pass/fail data using a pie chart. | |
2. Classify and plot (using bar graph) the final grades based on the following: | |
- Expert (95%-100%) | |
- Competent (85%-94%) | |
- Novice (75%-84%) | |
- Beginner (<75%) | |
3. Calculate the mean and median final grade. Plot the mean and median score with the plot of all the final grades. |
Create an
Trending now
This is a popular solution!
Step by step
Solved in 2 steps