Term
a _____ method is one that simply performs a task and then teriminates |
|
Definition
|
|
Term
a ______ returning method not only performs a task, but also sends a value back to the code that called it |
|
Definition
|
|
Term
to create a ________ u must write a definition, which consists of a header and a body |
|
Definition
|
|
Term
method belongs to a class not a specific object |
|
Definition
|
|
Term
______ type-void or the data type from a value returning method |
|
Definition
|
|
Term
_______ name- name that is descriptive of what the method does |
|
Definition
|
|
Term
_________ contain nothing or a list of one or more variable declarations if the method is capable of recieving arguments |
|
Definition
|
|
Term
methods are executed by method _______ ________ |
|
Definition
|
|
Term
values that are sent into a method are called ___________ |
|
Definition
|
|
Term
the ____ type of an argument in method call must correspond to the variable declaration in the parentheses of the method declaration. the parameter is the varable that holds the value being passed into a method |
|
Definition
|
|
Term
when u pass an argument to a method, be sure that the arguments _____ type is compativle wit the _______ variables data type |
|
Definition
|
|
Term
java will automatically perform ______ conversions but _______ conversions will cause a compiling err |
|
Definition
|
|
Term
if a paramether variable is changed inside a method is has ____ affect on the orginal argument |
|
Definition
|
|
Term
a methods paramether variables are _______ and distinct from the arguments tat are listed inside the parentheses of the method call |
|
Definition
|
|
Term
the class type variable does not hold the actual data item that is associated with it , but holds the _________ adress of the object |
|
Definition
|
|
Term
a varable associated with an object is called a ________ variable |
|
Definition
|
|
Term
when an object such as a string is passed as an argument, it is actually a _________ to the object that is passed |
|
Definition
|
|
Term
strings are ________ objects, which means that they cannot be changed |
|
Definition
|
|
Term
a ________ varible is declared inside a method and is not accessible to statements outside the method |
|
Definition
|
|
Term
different methods can have local variables with the same names becuse the methods cannot see each others local ______ |
|
Definition
|
|
Term
local varables are not __________ intialized with a default value and must be gven a value before then can be used |
|
Definition
|
|