Consider a company is maintaining its employees’ following data in a file: emplyeeID, FullName, DateofBirth, ContactNo, Qualification, Designation, Salary, takenLeaves, Address a. Write a java program to create/store data of 10 employees in a file. (filename = employees) b. Write a java program that takes employeeID as input, searches in file and displays the record if found.
Serialization |
|
Consider a company is maintaining its employees’ following data in a file: emplyeeID, FullName, DateofBirth, ContactNo, Qualification, Designation, Salary, takenLeaves, Address a. Write a java program to create/store data of 10 employees in a file. (filename = employees) b. Write a java program that takes employeeID as input, searches in file and displays the record if found. c. Create another method named as calculateBonus(String Qualification, String Designation, double Salary, int takenLeaves,), this method will return bonus. d. Write a program to read already created file and create/store data of those employees to another file, adding their bonus as well. e. Write a program that has applyLeave(int Leaves), it reads the takenLeaves from file for a particular employee and adds up Leaves that he wants to apply. |
Step by step
Solved in 6 steps