click below
click below
Normal Size Small Size show me how
ENGR131 Test 2 Vocab
Vocabulary questions from the second test
| Question | Answer |
|---|---|
| A principal benefit of methods is that they facilitate _____ of code. | Reuse |
| The header of a method must indicate its _____ type. | Return |
| Another name for a method argument is a(n) _____ parameter | actual |
| The memory address at which program execution should resume after a method call returns is stored on the call _____. | Stack |
| in the statement "arr[i] = x;", the variable i is called the array _____. | index |
| Stepwise _____ is a method of designing programs. | Refinement |
| The _____ of a local variable is from the point where it is declared to the end of the containing block | Scope |
| An array represents a _____ of values | list |
| The binary search algorithm is efficient but requires its input to already be _____. | Sorted |