Write a Java program, which creates a linklist for Employees info viz. EmpID, EmpName, EmpAge.
All operations should be performed on the linklist, like; Create, Add, Delete, Update, Size, View all, View by EmpID, etc.
Before the application is about to close, the information of whole linklist should be stored in a file.(Everytime the linklist wont write its Content in a file, it will be only performed when application exits).
When the application will load, all the records will be fetched from that same file and will be loaded in the linklist.