Chapter 6 Flashcards
1
Q
temporary variable
A
a variable used to store an intermediate value in a complex calculation.
2
Q
dead code
A
part of a program that can never be executed, often because it appears after a return statement.
3
Q
None
A
a special value returned by functions that have no return statement or a return statement without an argument.
4
Q
incremental development
A
a program development plan intended to avoid debugging by adding and testing only a small amount of code at a time.
5
Q
scaffolding
A
code that is used during program development but is not part of the final version.
6
Q
guardian
A
a programming pattern that uses a conditional statement to check for and handle circumstances that might cause an error.