A Function
// Yield the person�s namepublic String getName() { return Name; }
Recall: Executing return <expression> terminates execution of the method (function) and returns the value of <expression> to the place of the call
Think of functions in math: f(g(h(x)))
Can do similar things in Java