Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 Assignment(String userName, String grade){
this.dateCreated = LocalDate.now();
this.userName = userName;
this.grade = grade;
}
public LocalDate getDateCreated(){
return dateCreated;
}
public void setGrade(String grade){
this.grade = grade;
}
public String getGrade(){
return grade;
}
public void setUserName(String userName){
this.userName = userName;
}
public String getUserName(){
return userName;
}
}
class AssignmentTest {
public static void main(String[] args){
Assignment testAcct = new Assignment("Math","B");
testAcct.setGrade("B");
System.out.println(testAcct.toString());
}
}
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: 6/9/2022

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

AWS Certified Database Study Guide Specialty DBS-C01 Exam

Authors: Matheus Arrais, Rene Martinez Bravet, Leonardo Ciccone, Angie Nobre Cocharero, Erika Kurauchi, Hugo Rozestraten

1st Edition

1119778956, 978-1119778950

More Books

Students also viewed these Databases questions

Question

Differentiate 3sin(9x+2x)

Answered: 1 week ago

Question

Compute the derivative f(x)=(x-a)(x-b)

Answered: 1 week ago