Which of the following could not be used to implement getLastPlusInitial()?
a. return (lastName + ", " + firstName.substring(0, 1) + ".");
b. return (getLastName + ", " + getFirstName.substring(0, 1) + ".");
c. return (getLastName() + ", " + getFirstName().substring(0, 1) + ".");