Difficulty: Easy
Correct Answer: Program flowcharts
Explanation:
Introduction / Context:
Design packaging consolidates system-level and module-level specifications that will guide construction and deployment. It focuses on architecture, interfaces, data models, and module responsibilities rather than developer-specific diagramming at the code step level.
Given Data / Assumptions:
Concept / Approach:
Design deliverables define what modules must do and how they interact. Program flowcharts, when used, are usually part of coding-time documentation aligned with algorithms in a specific language; they come after detailed design in many lifecycles.
Step-by-Step Solution:
1) Classify each artifact by its abstraction level.2) Recognize system configuration (environments, topology) and module descriptions (contracts) as design items.3) Recognize program flowcharts as implementation-level documentation.4) Select the item not typically included in the packaged design set.
Verification / Alternative check:
Many methodologies list architecture documents, interface specs, and module specs under design, while program-logic charts are associated with coding standards and developer guides.
Why Other Options Are Wrong:
System configuration: essential to design and deployment planning.Module descriptions: core design artifact that defines responsibilities.All of the above: incorrect because two items do belong.None of the above: incorrect because there is one clear exception.
Common Pitfalls:
Overloading design packs with low-level coding artifacts reduces clarity and makes design maintenance harder.
Final Answer:
Program flowcharts
Discussion & Comments