write a program in QBasic to input " student's name, marks obtained in three different subjects" and find the total obtained marks and percentage.
Answers
CLS
INPUT " Enter the student's name " ; NS
INPUT " Enter the marks obtained in first subject " ; MFS
INPUT " Enter the marks obtained in second subject ";MSS
INPUT " Enter the marks obtained in third subject " ; MTS
INPUT " Enter the out total marks " ; OTM
LET TM = MFS + MSS + MTS
LET P = TM / OTM * 100
PRINT " Student name is " ; NS
PRINT " The total marks obtained is " ; TM
PRINT " The percentage is " ; P
END
Answer:
CLS
INPUT" Enter the student's name "; NS
INPUT "Enter the marks obtained in first subject
"; MFS
INPUT" Enter the marks obtained in second subject";MSS
INPUT "Enter the marks obtained in third subject
"; MTS
INPUT "Enter the out total marks "; OTM
LET TM=MFS + MSS + MTS
LET P = TM/OTM * 100
PRINT" Student name is " ; NS
PRINT "The total marks obtained is "; TM
PRINT "The percentage is "; P
END