Program 3. Write a program to read and write and student objects with variable-length records using any suitable record structure. Implement pack(), unpack(), modify() and search() methods. Algorithm: Step 1: Start Step 2: Enter the choice 1.Write 2. Display 3. Search 4. Modify 5.Exit case 1: write() //Read the name, usn, age, sem, branch case 2: unpack() display() case 3: unpack() search() case 4: unpack() search() modify() Step 3: Stop Algorithm...