Computer Science, asked by KrishnaAnju964, 21 days ago

Write a QBasic Program to display the Name and Grade for a single student on the basis of his marks entered according to the below given conditions... ( Use the If..then..elseif..end if statement ) a)M < 33 ----- "" Fail "" b)M < 55 ----- "" D Grade "" c)M < 75 ----- "" C Grade "" d)M < 90 ----- "" B Grade "" e)M > 90 ----- "" A Grade ""

Answers

Answered by SHARADA8124
1

Answer:

We can enter mark to our c program and the script will try to find out the grade by using series of else if condition checking. Each if else condition check for mark for a particular grade and if it is TRUE then all other checking ( else if ) are omitted.

Explanation:

Mark Me as the brainlest

Similar questions