Java program to calculate employee salary
Problem statement: Create a class Employee with the following private member variables.• int employeeId • String employeeName • double salary • double netSalaryInclude appropriate getters and setters method in Employee class. Write the following method in the Employee class: public void calculateNetSalary(int pfpercentage) – This method should take PF percentage as an argument. Deduct the …