Question
1) Given the following class, how would an instance of the class need to be declared with the password changed to changeme after the instantiation?
1) Given the following class, how would an instance of the class need to be declared with the password changed to changeme after the instantiation?
public class Customer { private String userName; private String password;
public Customer(String userName, String password) { this.userName = userName; this.password = password; }
public void setPassword(String password) { this.password = password;
}
public String getPassword() { return password;
}
public void setUserName(String userName) { this.userName = userName;
}
public String getUserName() { return userName; }
}
Options:
Customer c1 = new Customer("user", "pass"); c1. setPassword("changeme"); Customer c1 = new Customer("user", "pass"); c1. password( "changeme"); Customer c1= new Customer ("user", "pass"); c1. password = c1. . setPassword ("changeme"); Customer c1= new Customer( "user", "pass"); c1.password = "changeme
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started