Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Java programming Do the same question with Map Array Q3. Write a method named highest salary, that will get a List array of objects (named
Java programming Do the same question with Map Array
Q3. Write a method named "highest salary", that will get a List array of objects (named workerlist) of class Worker as an argument. Your method should find the worker who is getting the highest salary in that array, and should return the details of the worker as an object of class Worker to the back. Solution: public static Worker highest salaryl List workerlist) { Iterator itr = workerlist.Iterator(); float maxsalary=0; Worker worker maxsal worker while (itehasnext()) { worker = (Worker) itr.next(); if(worker.get wosalaryb>maxsalary) { maxsalary worker.get wosalaryD; maxsal worker = worker; } return maxsal worker }Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started