Marks Obtained Grade
85 or above 85 S
75 or above 75 but less than 85 A
65 or above 65 but less than 75 B
55 or above 55 but less than 65 C
50 or above 50 but less than 55 D
Less than 50 F
Input: Marks obtained
Output : Returns the grade on the basis of given criteria
GRADE(M)
[M is the marks obtained]
if(M>= 85) Then:
Returns 'S'
Else:
If (M>= 75) Then:
Returns 'A'
Else:
If(M>=65) Then:
Returns 'B'
Else:
If(M>= 55) Then:
Returns 'C'
Else
If(M>=50) Then:
Returns 'D'
Else
Returns 'F'
[End of If]
[End of If]
Exit.
85 or above 85 S
75 or above 75 but less than 85 A
65 or above 65 but less than 75 B
55 or above 55 but less than 65 C
50 or above 50 but less than 55 D
Less than 50 F
Input: Marks obtained
Output : Returns the grade on the basis of given criteria
GRADE(M)
[M is the marks obtained]
if(M>= 85) Then:
Returns 'S'
Else:
If (M>= 75) Then:
Returns 'A'
Else:
If(M>=65) Then:
Returns 'B'
Else:
If(M>= 55) Then:
Returns 'C'
Else
If(M>=50) Then:
Returns 'D'
Else
Returns 'F'
[End of If]
[End of If]
Exit.