Computer Science, asked by shampasaha2641982, 6 months ago

4. Draw a flowchart and write a program in QBASIC to enter your name and the marks
obtained in 10 different subjects in a term examination. Display the sum and average or
the screen along with the name with GOTO Statement.​

Answers

Answered by abhishekranjan95087
1

Explanation:

CLS

INPUT “Numerator “, n

INPUT “Denominator “, d

IF n < d THEN

PRINT “Fraction is Proper.”

ELSEIF n > d OR n = d THEN

PRINT “Fraction is Improper.”

END IF

END

Similar questions