Computer Science, asked by fatimakhan2963, 5 months ago

Algorithm to check whether the student is pass or fail

Answers

Answered by sonisupriya53
6

Answer:

algorithm to check whether the student is pass or fail :

Explanation:

1) Start

2) Enter the Mark's as 'm'

3) If m >=33

print(PASS)

else

print(FAIL)

4) Stop

hope it helps u :)

Answered by Anonymous
1

In MS Excel, suppose the passing marks be 70. And the marks of the student be in B4. Then, enter this formula in a cell C4: =IF(B4<70,”FAIL”,”PASS”) . This means if the score in B4 is less than 70, then enter the word FAIL in cell B4, else/otherwise enter the wordPASS. Copy this formula from C4 to C5 through C13. Use an IF statement to convert numeric scores to a pass-fail status.

Similar questions