1. The process of breaking a large program down into manageable pieces is known as top-down design or the _____.
- divide and solve approach
- divide and conquer approach
- modularity breakdown approach
- module division approach
2. A variable that can be used only by the module where it is declared is called a _____.
- local variable
- global variable
- static variable
- None of the above
3. The _____ statement is used to pass a value back to the calling code from a function.
- void
- return
- type
- value parameter
4. Which part of a function or sub procedure declaration statement is optional?
- Procedure name
- Body code
- Header
- Parameters