Assignment II
Assignment II
Assignment II
Computer Programing April 2025
Objectives
Assignment Instructions:
Before writing the code, you must design a flowchart that outlines the program logic. It should
include: input of the grading scale, input of student name and score, decision structure for
determining the grade, and output of the result.
Draw.io (https://www.draw.io )
Lucidchart (https://www.lucidchart.com )
Visual Paradigm Online (https://online.visual-paradigm.com )
Zen Flowchart (https://www.zenflowchart.com )
Export your flowchart as an image and add it to your final PDF report.
Prompt the user to enter grading cutoffs in one line as comma-separated values for A, B,
C, D, and F. Example: 90,80,70,60,0. Store these values in five variables using unpacking.
Ask the user to input the student’s name and score.
Use if-else statements to determine the grade based on the entered cutoffs.
Display the student’s name, score, and corresponding grade.
Sample Input/Output
Submission Requirements
Flowchart Design
Python Code (.Only the functions that do the core process)
Screenshot of the program running with at least two different test cases