135k views
5 votes
A School is interested in computerizing their students

grading system.
I Marks Grade
150-100 A
60-74 B
50-59c
40-49 D
0-39 E-
Draw a flow chart to represent the solution​

User Spence
by
7.1k points

1 Answer

5 votes

Answer:

Step-by-step explanation:

To execute this program, and check grades accordingly, if..else statement will be used easily.

The pseudo code of this program is given below while flowchart of this program is attached with this solution

StartProgram to Check Grade;

if(grade in rage of 150-100)

{

A

}

else if (grade is in range of 60-74)

{

B

}

else if (grade is in range of 50-59)

{

C

}

else if (grade is in range of 40-49)

{

D

}

else //GRADE IS IN RANGE 0-39

{

E

}

Stop the program!;

A School is interested in computerizing their students grading system. I Marks Grade-example-1
User TJF
by
6.9k points