Question: JAVA - Simple exercise, BUT PLEASE READ all the instructions in the photo first. The instructions are at the top and bottom of the photo.
Write the definition of a class ContestResult containing: An instance variable winner of type String, initialized to the empty String . An instance variable secondPlace of type String, initialized to the empty String An instance variable thirdPlace of type String, initialized to the empty String A method called setWinner that has one parameter, whose value it assigns to the instance variable winner. .A method called setSecondPlace that has one parameter, whose value it .A method called setThirdPlace that has one parameter, whose value it . A method called getWinner that has no parameters and that returns the assigns to the instance variable secondPlace assigns to the instance variable thirdPlace value of the instance variable winner. A method called getSecondPlace that has no parameters and that returns the value of the instance variable secondPlace A method called getThirdPlace that has no parameters and that returns the value of the instance variable thirdPlace. No constructor need be defined
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
