write the definition of a class ContestResult containing: an instance variable winner of type String, initialized to a empty string an instance variable second_place of type String, initialized to a empty string an instance variable third_place of type String, initialized to a empty string a method called set_winner that has one parameter, whose value it assigns to the instance variable winner a method called set_second_place that has one parameter, whose value it assigns to the instance variable second_place a method called set_third_place that has one parameter, whose value it assigns to the instance variable third_place a method called get_winner that has no parameter and returns the value of the instance variable winner a method called get_second_place that has no parameter and returns the value of the instance variable second_place a method called get_third_place that has no parameter and returns the value of the instance variable third_place
write the definition of a class ContestResult containing:
an instance variable winner of type String, initialized to a empty string
an instance variable second_place of type String, initialized to a empty string
an instance variable third_place of type String, initialized to a empty string
a method called set_winner that has one parameter, whose value it assigns to the instance variable winner
a method called set_second_place that has one parameter, whose value it assigns to the instance variable second_place
a method called set_third_place that has one parameter, whose value it assigns to the instance variable third_place
a method called get_winner that has no parameter and returns the value of the instance variable winner
a method called get_second_place that has no parameter and returns the value of the instance variable second_place
a method called get_third_place that has no parameter and returns the value of the instance variable third_place
no constructor needed to be defined. using python
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images