Quiz 6 stuff Flashcards
When you invoke a method with a parameter, the value of the argument is passed to the parameter. This is referred to as _______________ .
pass by value
The client can use a method without knowing how it is implemented. The details of the implementation are encapsulated in the method and hidden from the client who invokes the method. This is known as ___________ .
information hiding and encapsulation
The signature of a method consists of _______________
method name and parameter list
___________ is to implement one method in the structure chart at a time from the top to the bottom.
top down approach
Each time a method is invoked, the system stores parameters and local variables in an area of memory, known as __________, which stores elements in last-in first-out fashion
a stack
___________ is a simple but incomplete version of a method.
a stub