File Handlings Programs (Qbasic)

  1. 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
  2. A sequential data file "std.dat" contains name, class and roll no., marks of english and science of a student. Make a program to display the record. (Qbasic Code)
  3. A sequential data file "std.dat" contains name, class and roll no., marks of english and science of a student. Make a program to add one more records in the file. (Qbasic Code)
  4. A sequential data file "std.dat" contains name, class and roll no., marks of english and science of a student. Make a program to display all records in the file. (Qbasic Code)
  5. A sequential data file "std.dat" contains name, class and roll no., marks of english and science of a student. Make a program to display certain records in the file according to the roll no. supplied. (Qbasic Code)
  6. A sequential data file "std.dat" contains name, class and roll no., marks of english and science of a student. Make a program to update marks in english and science. (assuming only one record) (Qbasic Code)
  7. A sequential data file "record.dat" contains certain number of records having fields name as Name, DOB and Address. Make a program to display the records whose date of birth is the current month.
  8. To search the employee's name from the sequential data file "emp.dat" having name as Name, Post, Dept and salary.