Write a Program to perform the basic operations like insert, delete, display and search in a list. List contains String object items where these operations are to be performed.
Operations on String List Write a Program to perform the basic operations like insert, delete, display and search in a list. List contains String object items where these operations are to be performed. Sample Input and Output: 1. Insert 2. Search 3. Delete 4. Display 5. Exit Enter your choice: 1 Enter the item to be inserted: Bottle Inserted successfully 1. Insert 2. Search 3. Delete 4. Display 5. Exit Enter your choice: 1 Enter the item to be inserted: Water Inserted successfully 1. Insert 2. Search 3. Delete 4. Display 5. Exit Enter your choice: 1 Enter the item to be inserted: Cap Inserted successfully 1. Insert 2. Search 3. Delete 4. Display 5. Exit Enter your choice: 1 Enter the item to be inserted: Monitor Inserted successfully 1. Insert 2. Search 3. Delete...