Modify Employee to have constants for the maximum and minimum performance ratings. Add a method to Company that returns a list of all employees with a certain performance rating (given by the parameter). For example, if the parameter is 3, it will return a list of all Employee objects whose performance rating is 3. Hint: you will need to create a new list object and add to it all employees who match the search criteria.



Answer :

Other Questions