
Patrick B. answered 02/21/21
Math and computer tutor/teacher
class Name
{
protected String firstName;
protected String middleName;
protected String lastName;
Name (String strNameFirst, String strNameMiddle, String strNameLast)
{
this.firstName = new String(strNameFirst);
this.middleName = new String(strNameMiddle);
this.lastName = new String(strNameLast);
}
}