...
Create a new Java project - call it
EmployeeManagement
.Create a new file - make sure you select
Java Class
and name it Employee.Within the braces of the class, create attributes to hold the employee’s first name, last name, their department and employee ID (you can assume it will be a whole number).
Still within the braces of the class, create a method that would return the employee’s full name (hint: concatenate first and last name).
Create another method (call it
introduction
) that will print out the employee's details - their ID, their department, and their full name.
...