Saved Bookmarks
| 1. |
A java program to output the details of employees |
| Answer» CLASS EMPLOYEE. { public string name; public int SALARY; ...public Employee(string name, int salary, int joiningDate) { this.name = name; ...public void GetEmployeeData() { { ...public void DisplayEmployee() { Console.WriteLine("The name of employee is: "+ name); ...for(int i = 0; i < 10; i++) { e[i].DisplayEmployee();Please MARK as brainliest | |