130k views
3 votes
Which of the following statements regarding structure charts is FALSE?

A. A structure chart will show the user-defined functions that are called in a program.
B. A structure chart may show the data that is exchanged between user-defined functions.
C. A structure chart represents the specific logic of a given user-defined function in a program.
D. None of the above.

User Ian Wong
by
7.5k points

1 Answer

4 votes

Final answer:

The false statement about structure charts is that they represent the specific logic of user-defined functions. Structure charts depict the hierarchy and calling relationships between functions but not the detailed logic within them.

Step-by-step explanation:

The statement that is FALSE regarding structure charts is:

C. A structure chart represents the specific logic of a given user-defined function in a program.

Structure charts are used in software engineering for high-level design. The true nature of a structure chart is to illustrate the hierarchy and calling relationships between functions or modules in a system. While they do show the user-defined functions (option A) and may show the data that is exchanged between these functions (option B), structure charts do not detail the specific logic within a user-defined function. For representing specific logic, flowcharts or pseudocode are typically used instead.

User Ankur Marwaha
by
6.9k points