Lesson #4 Review
Questions
1. In programming,
a 'function' is just a way of
2. Top-Down design
means
3. The code for
the statements in a function is generally placed where?
4. When do the statements
inside a function execute?
5. Function names
are always followed by parentheses (), even when the parentheses are empty.
6. When we send
information to a function, it is enclosed in the parentheses and is called
the:
7. Which of the
following is NOT true?
8. The keyword 'return'
is used for
9. A local variable
is
10. Global variables
are declared outside of any function definition and are dangerous because
they could be modified from any function.