Problem:
Question 1: What is system volume information? How to hide it? Explain thoroughly.
Question 2: Write a program that maintains a list of items using a generic singly linked list as the backing store.
Specification:
Use the SinglyLinkedList class provided below
The type of item stored in the list can be any item of your choice: pets, books, coins, friends, etc. (You'll need to write the class representing the item).
Run the program from a menu with the following options:
Add an item.
Delete an item.
Find an item.
Display the list.
Exit
When the program runs, programatically create 5 items and add them to the list before the menu is displayed.
Please describe the code.