Employee Record First is the Employee Class:- public class Employee { private String firstName; private String lastName; private double monthlySalary; public Employee(String f, String l, double m) { firstName = f; lastName = l; if(m < 0){ monthlySalary =0; } else { monthlySalary = m; } } public String getFirstName() { return firstName; } public void setFirstName(String fname) { firstName = fname; } public String getLastName() { return lastName; } public void setLastName(String lname) { lastName = lname; } public double getMonthlySalary() { return monthl...
Subsunlo-17 is the digital platform to uplift the voices and talent either from entrepreneurship,arts,education and social change.