Given a class ContestantHealth for walkathon, with data members, id, name, age, DOJ (date of joining in the group), heig
Posted: Sat Feb 19, 2022 3:21 pm
Given a class ContestantHealth for walkathon, with data members, id, name, age, DOJ (date of joining in the group), height, weight, diabetic (Boolean). Create an array of objects to maintain the health information of n contestant. a. write a method getdetails() to read inputs. b. Write the static method fittest() to identify the contestant with height >5.7 and weight ranging between 70-75KG with no diabeties. c. Write a static method senior () to identify the contestant whose joining in the group is above 5 years. d. Write a static method sort () to display the contestant details with respect to age.