President class The President class describes information of a president of a club. It has following attributes: Attribute Attribute name Description type firstName String The first name of the president lastName String The last name of the president The academic level of the president such as senior, junior, etc. academicLevel String The following constructor should be provided to initialize each attribute. This constructor initializes the value of string attributes to "?". public President ( ) The following accessor methods should be provided to get the attributes: public String getFirstName () public String getLastName () public String getAcademicLevel () The following modifier(mutator) methods should be provided to set the attributes: public void setFirstName (String someFirstName) public void setLastName (String someLastName) public void setAcademicLevel (String someLevel) CJLLUJI (JDI Download CSE205AssignmentsDescription.html (3.2 KB) ments firstName String The first name of the president lastName String The last name of the president be The academic level of the president such as senior, junior, etc. lacademicLevel String The following constructor should be provided to initialize each attribute. This constructor initializes the value of string attributes to "?". public President () The following accessor methods should be provided to get the attributes: public String getFirstName () public String getLastName () public String getAcademicLevel () The following modifier(mutator) methods should be provided to set the attributes: public void setFirstName (String some FirstName) public void setLastName (String someLastName) public void setAcademiclevel (String someLevel) The following method must be defined: public String tostring 0 toString method should return a string of the following format: Water, Bob (Senior) where "Water' is the last name of a president, "Bob" is the first name, and "Senior" is the academic level. So you need to insert ," or parentheses between these variables. Note that you can choose a meaningful parameter variable name for each method. MacBook Pro