- Make a program to input the name, class and roll no, marks of english and science of a student and store in a sequential file "std.dat". (qbasic code)
- CLS
OPEN "std.dat" FOR OUTPUT AS #1
INPUT "Enter name"; n$
INPUT "Enter class"; cl
INPUT "Enter roll"; r
INPUT "Enter marks in english"; en
INPUT "Enter marks in science"; sc
WRITE #1, n$, cl, r, en, sc
END