Activity: Analysis, Design & Process Models

Two professionals design your system, live tools blueprint it, and the right model steers the whole ship — master all four.

Grade XII • Computer Science ⏱️ ~40 min

Brief Intro — Analysis, Design & Process Models

Two professionals design your system, live tools blueprint it, and the right model steers the whole ship — master all four. In this activity, we bridge the gap between user requirements and technical execution by exploring the specialized roles, design methodologies, and strategic development paradigms used in modern software engineering.

Part 1 System Analyst vs Software Engineer

Distinguishing the roles of the architect who plans the vision and the builder who constructs the logic.

Task 1: The System Analyst (The Architect)

The System Analyst acts as the "Architect" who draws the plans. They are primarily responsible for the initial and final stages of the system's life, focusing on the "Big Picture." Their job involves fact-finding, feasibility studies, costing, and creating functional specifications that describe data flows and reports.

Check your understanding

An analyst bridges the gap between business stakeholders and technical teams, translating organizational needs into logical blueprints.

Task 2: The Software Engineer (The Builder)

The Software Engineer serves as the "Builder" who translates blueprints into actual programming code. They focus deeply on technical design, coding, choosing algorithms, and performing White Box and Black Box testing to ensure performance and stability.

Check your understanding

While analysts focus on what the system does for the business, engineers focus on how the machine executes that logic efficiently.

Task 3: Key Distinctions

The differences lie in their daily output and focus: the Analyst solves business problems and outputs specifications/diagrams; the Engineer solves technical problems and outputs a functional software application. Communication vs logic is the core divide.

Check your understanding

Analysts communicate with people (users/managers); Engineers communicate with machines (writing and testing code).

Part 2 Requirement Collection Methods

Methods used to extract precise client needs before construction begins.

Task 4: Collection Tools

To build the right software, analysts use several methods:

Check your understanding

Choose interviews for depth, questionnaires for volume, and prototyping for early user visual validation.

Part 3 System Design

From abstract data flows to physical implementation structures.

Task 5: Logical vs Physical Design

Logical Design focuses on the abstract flow of data (how information moves) using tools like DFDs. Physical Design focuses on actual implementation, such as specific hardware, software platforms, and database structures.

Check your understanding

Logical design is about "what" moves where; physical design is about the "how" and "where" of hardware and actual tables.

Task 6: Data Flow Diagrams (DFD)

A DFD is a graphical map showing how data moves. It consists of Entities (Rectangles), Process (Circles), Data Storage (Open Rectangles), and Data Flow (Arrows). DFDs use levels: Level 0 (Context) is the bird's-eye view; Level 1 breaks major modules; Level 2 drills into specifics.

Check your understanding

DFDs visualize the journey of data from source to destination through various transformations.

Task 7: Structure Charts & Logic Tools

A Structure Chart shows the hierarchy of functions (which module controls another). For complex logic, designers use Decision Tables (grids for complex rules), Decision Trees (branching choices), or Pseudo-Code (plain English code-like logic).

Check your understanding

Structure charts define the organization of code modules, while decision tables handle dense business rule logic.

Task 8: E-R Diagrams, UML & Use Cases

ER Diagrams (Entities, Attributes, Relationships) organize database tables. UML Use Case Diagrams show the system from the user's perspective, focusing on what the system does for the user (the Actor).

Check your understanding

ER diagrams blueprint the database; Use Case diagrams blueprint the user interactions.

Part 4 Software Quality

Defining the attributes of a high-quality product and the processes to maintain them.

Task 9: Attributes, QA & QC

Quality attributes include Reliability, Efficiency, Usability, Maintainability, and Portability. Quality Assurance (QA) focuses on processes to prevent defects, while Quality Control (QC) focuses on activities to detect and fix defects (Testing).

Check your understanding

QA is proactive (prevention); QC is reactive (detection/testing).

Part 5 The FOUR Process Models

Compare the strategic paradigms used to steer software projects to completion.

Tool & Model Matchmaker

Click a Goal/Scenario on the left, then click its matching Tool/Model on the right.

Map out how data moves
Small project, fixed reqs
Fast delivery, constant feedback
Organize database tables
Agile Model
Data Flow Diagram
ER Diagram
Waterfall Model

Task 10: Waterfall Model

The oldest, simplest approach. It is linear and sequential: you must finish one phase before the next starts. Its constraint is that it assumes perfect planning and does not allow going back to previous stages without restarting.

Check your understanding

Waterfall is best for small projects with fixed, unchanging requirements where similar systems have been built before.

Task 11: Prototype & Spiral Models

Prototype Model: Builds a scaled-down "mock-up" using CASE tools for user feedback; best when requirements are unsure. Spiral Model: Combines Waterfall and Prototyping with a heavy focus on Risk Analysis at every iteration; best for large, expensive, high-risk projects.

Check your understanding

Prototypes reduce requirement risk; Spiral reduces technical and financial risk through iterative cycles.

Task 12: Agile Model

Agile breaks projects into small parts called Iterations or Sprints (1-4 weeks). Popular methodologies include Scrum (Product Owner, Scrum Master), XP (Extreme Programming), Lean (Eliminate Waste), and DSDM (MoSCoW prioritization). Pros: frequent delivery, handles change. Cons: less formal documentation.

Check your understanding

Agile prioritizes working software and customer satisfaction over comprehensive documentation and fixed plans.

Ready to test your knowledge?

Take the Assessment →