5.8 Scope and Access
-
Incorrect
Correct
No Answer was selected
Invalid Answer
Vocabulary
Term | Definition |
---|---|
Method Decomposition | The process of breaking down large problems into smaller problems, each with a method that defines a subproblem in the larger problem. |
Shadowing | If two variables within the same scope have the same name, the variable with the more specific scope will be called. |
Local Variable | A variable that is defined in a method or constructor. It only exists in the context of the method that it belongs to. |