click below
click below
Normal Size Small Size show me how
1420-03
Introduction to Programming 03
| Question | Answer |
|---|---|
| Which of the following is not a benefit of using modules (Simpler code, Faster development, Code reuse, User friendly)? | User friendly |
| What is the term used for the memory address of the location of the statement immediately after the module call? | Return point |
| In a flowchart, the module call is represented by which symbol with vertical bars at each side. | Rectangle |
| What tool would a programmer use to visualize the relationship between modules? | Hierarchy charts |
| What is the term used for the variable that receives an argument that passed into a module? | Parameter |
| Passing an argument by ________ means that only a copy of the argument's value is passed into the parameter variable. | value |
| Which type of variable is visible to every module and the entire program? | Global |
| A pass by _________ argument means that the argument is passed into a parameter that will reference the content of the argument in the module. | reference |
| A local variable is a variable that is declared inside what? | module |