Chapter 6 - Methods Flashcards
means paying attention to important properties while ignoring nonessential details.
Abstraction
the process of breaking down a large program into modules
Modularization
The feature of modular programs that allows individual modules to be used in a variety of applications
Reusability
includes the method identifier and possibly other necessary identifying information.
Method Header (methods declaration)
contains all the statements in the method.
Methods body (methods implementation)
marks the end of the method and identifies the point at which control returns to the calling program or method.
Return Statement
is the feature of programs that assures you a module has been tested and proven to function correctly
Reliability
SOC stands for?
Service Oriented Computing
SOAP stands for?
Simple Object Access Protocol
methods that require information to be sent in from the “outside” (user input or other programs) are called ?
Parameters
When you call a method using a value within its parentheses, the value is an
Argument
When you want to retain a value that exists in a method, you can ______the value from the method
Return
A method can return nothing, in which case the return type is usually indicated as_____?
Void (Void Method)
A variable passed into a method is a?
passed by value
When you make a request to a method, you don’t know the details of how the method is executed
(The encapsulation of method details) what is this called?
Implementation hiding