answers 100% correct 2025
A group of statements that exist within a program for the purpose of
performing a specific task is
a(n) .
a. block
b. parameter
c. module
d. expression - correct answer module
A benefit of using modules that helps to reduce the duplication of code within
a program is
.
a. code reuse
b. divide and conquer
c. debugging
d. facilitation of teamwork - correct answer code reuse
The first line of a module definition is known as the .
a. body
b. introduction
c. initialization
d. header - correct answer header
4. You _____ the module to execute it.
, a. define
b. call
c. import
d. export - correct answer call
A ____ point is the memory address of the location in the program that the
computer will return
to when a module ends.
a. termination
b. module definition
c. return
d. reference - correct answer return
A design technique that programmers use to break down an algorithm into
modules is known as
a. top-down design
b. code simplification
c. code refactoring
d. hierarchical subtasking - correct answer top-down design
A ____ is a diagram that gives a visual representation of the relationships
between modules in a program.
a. flowchart
b. module relationship chart
c. symbol chart
d. hierarchy chart - correct answer hierarchy chart