Reference no: EM13706576
Program: Create a UML Class Diagram for a Survey class
The subsequent are requirements of the Survey class:
- The Survey class will have a static class variable that stores the current respondent's ID. As respondents complete the survey, this value will be incremented by one.
- The Survey class will have an instance variable to hold the title of the survey.
- The Survey class should have two overloaded constructors.
- The first constructor should take no arguments. It should set the survey title to a default value of "Customer Survey".
- The second constructor should accept a String value for the survey title. It should reset the static respondent ID to zero. It should set the survey title to the value passed into the constructor.
- The survey class should have a generateRespondentId() method which returns the next value of the respondent ID.
This method should increment the static instance variable for the respondent ID by one.
You have to prepare a UML Class Diagram for a Survey class. Please help! I am stuck on this question