1. Write a program that can store 10 records of students in a link list manner and apply the following operations on it.

a. View the list
b. Insert the elements in different locations of linked list and view it.
c. Search any element from the linked list
d. Delete record again view the list after deletion.

you can find code snippets online for all of these operations, in whatever language you need to use. Just write a function or macro for each one.