Write a C++ program to read series of names, one per line, fromstandard input and write these names spelled in reverse order to thestandard output using I/O redirection and pipes. Repeat theexercise using an input file specified by the user instead of thestandard input and using an output file specified by the userinstead of the standard output.
Write a C++ program to read and write student objects with fixedlengthrecords and the fields delimited by “|”. Implement pack ( ),unpack ( ), modify ( ) and search ( ) methods.
Write a C++ program to read and write student objects withVariable - Length records using any suitable record structure.Implement pack ( ), unpack ( ), modify ( ) and search ( ) methods.
Write a C++ program to write student objects with Variable -Length records using any suitable record structure and to readfrom this file a student record using RRN.
Write a C++ program to implement simple index on primary keyfor a file of student objects. Implement add ( ), search ( ), delete ( )using the index.
Write a C++ program to implement index on secondary key, thename, for a file of student objects. Implement add ( ), search ( ),delete ( ) using the secondary index.
Write a C++ program to read two lists of names and then matchthe names in the two lists using Cosequential Match based on asingle loop. Output the names common to both the lists.
Write a C++ program to read k Lists of names and merge themusing k-way merge algorithm with k = 8.
Write a C++ program to implement B-Tree for a given set ofintegers and its operations insert ( ) and search ( ). Display thetree.
Write a C++ program to implement B+ tree for a given set ofintegers and its operations insert ( ), and search ( ). Display thetree.
Write a C++ program to store and retrieve student data from fileusing hashing. Use any collision resolution technique.
Write a C++ program to reclaim the free space resulting from thedeletion of records using linked lists.