Question: public class Assignment { private String userName; private String grade; private LocalDate dateCreated; public Assignment ( String userName, String grade ) { this.dateCreated = LocalDate.now
public class Assignment
private String userName;
private String grade;
private LocalDate dateCreated;
public AssignmentString userName, String grade
this.dateCreated LocalDate.now;
this.userName userName;
this.grade grade;
public LocalDate getDateCreated
return dateCreated;
public void setGradeString grade
this.grade grade;
public String getGrade
return grade;
public void setUserNameString userName
this.userName userName;
public String getUserName
return userName;
class AssignmentTest
public static void mainString args
Assignment testAcct new AssignmentMathB;
testAcct.setGradeB;
System.out.printlntestAccttoString;
What does the toString method need to look like to result in the following output note that the date will reflect your current date instead:
UserName: Math
Grade: B
Date Created:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
