CSC 342 Semester I: H ( G)
|
|
|
- Edgar Garrett
- 10 years ago
- Views:
Transcription
1 CSC 342 Semester I: H ( G) Software Engineering Systems Analysis: Requirements Structuring Context & DFDs. Instructor: Dr. Ghazy Assassa Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 1
2 Objectives To introduce requirements structuring that follows Facts Finding Techniques: Introduce the following: System context diagram Data Flow Diagrams DFD s Entity Relationship diagram: E-R diagram Decision tables & Decision trees Natural Language Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 2
3 Comparison of DeMarco & Yourdan and Gane & Sarson DFD Symbol Sets Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 3
4 Components of a Context Diagram 3 Symbols: Process (single process) 0 System Name Entity (1 or many) Entity 1 Name Entity 2 Name Data Flow (many) Data Flow1 Name Data Flow2 Name Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 4
5 Context Diagram Sys Interface Entity 3 DF 1 Entity 1 Entity 2 DF 2 DF 3 DF 4 0 System Name DF 5 DF 6 Entity 4 Entity 5 Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 5
6 Context Diagram System Interface Bird s view of the system Context Diagram Shows the scope of the systemm system boundaries, external entities that interact with the system and the major information flows between the entities and the system Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 6
7 Context Diagram Sys Interface Example: Food Ordering System 0 Customer Customer order Receipt Food Processing System Food order Kitchen Management Reports Management Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 7
8 Context Diagram: Entity An Entity External Entity may be: A person interacting with the system (ex: Student, Customer). The person may be inside or outside the business unit under study Entity Name Another organization sending/receiving info (ex: Supplier, Department) Another Information system interfacing with the system under study (ex: Bank, GOSI) Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 8
9 Context Diagram: Entity (cont.) External entity to the system Entity Name Source entity: provides data flows to the system Sink entity: receives data flows from the system Considered as a black box: We are not interested in what an entity will do with information or how it will do it Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 9
10 Context Diagram: Data Flow DF Data Flow DF Data in motion. Ex: Data on a an invoice Data on a payroll check Data Flow Name DF may include a structured group of data that move together, i.e. as a data structure. data structure details to be specified separately (not on the DFD) EX: Invoice data = ( Invoice date, customer name, sales person name, list of {item name, quantity, unit price}, invoice total, discount, invoice net amount ) Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 10
11 Context Diagram: Data Flow DF DF may be: Data Flow Name Paper DF for manual systems Electronic format DF for automated systems Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 11
12 Data Flow Diagrams DFD : 4 Symbols Process (many processes) 1.0 Process # 1 verb name 2.0 Process # 2 verb name 7.0 Process # 7 verb name Entity (1 or many) Entity 1 Name Entity 2 Name Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 12
13 Data Flow Diagrams: Components of a DFD Data Flow (many) Data Flow1 Name Data Flow2 Name Data Store (1 or many) D1 Data Store1 Name D2 Data Store2 Name Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 13
14 DFD: Processes A Process may be: manual or computerised A Process: Represents actions on data (verb) Receives DF for processing Sends DF after processing May: Transform data (calculations) Store data Distribute data 1.0 Process # 1 verb name Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 14
15 DFD: Process Explosion / Decomposition / Partitioning A process: Has a number (ID) Has a verb describing the action on data A complex process may be exploded (decomposed) in many sub-processes process hierarchy 1.0 Process # 1 verb name Ex: Process 2.0 may be exploded into 3 sub-processes: 2.1, 2.2, 2.3 Process 2.2 may be exploded into 4 and sub-processes: 2.2.1, 2.2.2, 2.2.3, And so on, till getting simple processes as leaves of the tree Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 15
16 DFD: Process Explosion / Decomposition Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 16
17 DFDs Decomposition Tree Context Diagram Top DFD Level-0 P1 P2 P3 P4 P5 DFD Level-1 P2.1 P2.2 P2.3 DFD Level-2 P2.2.1 P2.2.2 P2.3.1 P2.3.2 Down Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 17
18 Balancing DFDs When a process is decomposed to a lower level you must conserve inputs and outputs of this process at both levels of decomposition Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 18
19 Balancing DFDs DF1 2.0 DF2 DF3 2.0 DF1 2.1 D DF2 DF3 Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 19
20 DFD: Data Store Data at rest in Files in folder (paper) D1 Data Store Name Computer files (one or more) Computer database Data may be written to a data store update Data Flow Name D2 Data Store Name Data may be read from a data store query Data Flow Name D3 Data Store Name Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 20
21 DFD: Data Store (cont.) Examples of Data stores: Customer info: customer_name, ID, address, fax, etc.. D1 Data Store Name Student info: student_name, ID, birth_date, address, major, GPA, etc.. For a relational databases, data stores will provide the normalised relations Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 21
22 Data Store Data is often stored for later use. sensor # report required 2 look-up sensor data sensor number sensor #, type, location, age type, location, age D1 sensor data Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 22
23 Data Flow Diagramming: Guidelines all icons must be labeled with meaningful names the DFD evolves through a number of levels of detail always begin with a context level diagram always show external entities in context level diagram always label data flow arrows do not represent process logic process logic is described separately using structured English, decision tables, decision trees Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 23
24 How to construct a context diagram Determine external entities to the system Source entities that provide data to the system Sink entities that receive data from the system Determine data flow (single, or group of data) from external source entities To external sink entities Draw system context diagram Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 24
25 Context Diagram: Example user video source processing request digital video processor NTSC video signal requested video signal monitor Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 25
26 Confusion: an entity or a process? Do not be confused by: Is some thing an entity or a process? This may occur when some data are processed in one place (office 1) and the processed data is moved to another place (office 2) for additional processing. Student Office 1/ Person 1 Process 1: Fill in required courses Office 2 / Person 2 Process 2: Verify perquisites Registration info Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 26
27 Confusion: an entity or a process? In DFDs: Not relevant: where data are physically processed (entity!!!) Who is processing data (entity!!!) But relevant: how data are processed within the system Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 27
28 Wrong DFD Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 28
29 Correct DFD Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 29
30 Context Diagram of a Food Ordering System (again) Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 30
31 Level-0 DFD Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 31
32 Level-1 DFD of Process 1.0 from the Level-0 DFD Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 32
33 Level-1 DFD of Process 4.0 from the Level-0 DFD Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 33
34 Level-2 DFD of Process 4.3 from the Level-1 DFD for Process 4.0 Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 34
35 Basic rules that apply to all DFDs Inputs to a process are always different than outputs Objects always have a unique name In order to keep the diagram uncluttered, you can repeat data stores and sources/sinks on a diagram Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 35
36 DFD Rules Process A. No process can have only outputs (a miracle) B. No process can have only inputs (black hole) C. A process has a verb phrase label Data Store D. Data cannot be moved directly from one store to another E. Data cannot move directly from an outside source to a data store F. Data cannot move directly from a data store to a data sink G. Data store has a noun phrase label Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 36
37 DFD Rules: Source/Sink Source/Sink H. Data cannot move directly from a source to a sink I. A source/sink has a noun phrase label Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 37
38 DFD Rules: Data Flow Data Flow J. A data flow has only one direction of flow between symbols K. A fork means that exactly the same data goes from a common location to two or more processes, data stores or sources/sinks L. A join means that exactly the same data comes from any two or more different processes, data stores or sources/sinks to a common location M. A data flow cannot go directly back to the same process it leaves N. A data flow to a data store means update O. A data flow from a data store means retrieve or use P. A data flow has a noun phrase label Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 38
39 Another example Inventory Control System for the previous Food Processing Company Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 39
40 Inventory Control System: Context Diagram Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 40
41 Level-0 DFD Current Inventory Control System Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 41
42 Level-0 DFD New Inventory Control System Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 42
43 End of Process Modelling DFDs Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 43
44 Logic Modelling Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 44
45 Sys Modelling and Deliverables Done Now System Modelling Interface Modelling Process Modelling Logic Modelling (Process Logic) Data Modelling Deliverables Context diagram DFDs Structured English Decision Tables Decision Trees Other diagrams.. ER diagram Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 45
46 Logic Modelling Logic modelling: Representing internal structure & functionality of processes on a DFD DFDs do not show the logic inside the processes Logic modeling can also be used to show when processes on a DFD occur Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 46
47 Deliverables of Process Logic Modelling Structured English /Pseudocode/ / Equations /Narrative text Decision tables Decision trees Diagrams and/or charts State-Transition diagrams Sequence diagrams (OOAD) Activity diagrams (OOAD) Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 47
48 Logic Modelling Structured English /Pseudocode/ Similar to programming language If conditions Case statements Example for process 3.0 of Level-0 DFD Current Inventory Control System Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 48
49 Level-0 DFD Current Inventory Control System (Again!) Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 49
50 Process 3.0 Logic Modelling Structured English /Pseudocode/ Process 3.0: Generate Orders DO READ next Item Inventory record BEGIN IF IF Quantity-in-stock < minimum-reorder level THEN generate order for this item END IF UNTIL end of file Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 50
51 Logic Modelling: Decision Tables A table representation of the logic of a decision Specifies the possible conditions and the resulting actions Best used for complicated decision logic Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 51
52 Logic Modelling: Decision Tables If C1 AND C2 Then Action Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 52
53 Logic Modelling: Decision Tables Number of rules If C1 has n1 values C2 has n2 values... Ci has ni values. Cm has nm values Number of rules = n1x n2 x x ni x x nm = (ni) i=m i=1 Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 53
54 Logic Modelling: Decision Tables How to create a decision table Name the condition and values each condition can assume Name all possible actions that can occur List all rules Define the actions for each rule Simplify the table Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 54
55 Logic Modelling: Decision Tables Example: Decision table for a payroll system Employee type: 2 values Salaried S : By hour H : Hours worked: 3 values < 40 = 40 > 40 Number of rules = 6 Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 55
56 Logic Modelling: Decision Tables Example: Complete decision table for a payroll system Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 56
57 Logic Modelling: Decision Tables Example: SIMPLIFIED decision table for a payroll system Conditions Rules R1 R2 R3 R4 C1 Employee type S H H H C2 Hours worked - <40 40 > 40 A1 Pay base salary X A2 Calculate hourly wage X X X A3 Calculate overtime X A4 Produce absence report X Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 57
58 Logic Modelling: Decision Tree Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 58
59 Logic Modelling: Decision Tree A graphical representation of a decision situation Two elements: Nodes: Decision points ovals: Actions Read from left to right All possible actions are listed on the far right Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 59
60 Logic Modelling: Decision Tree Two choices per decision point Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 60
61 Logic Modelling: Decision Tree Multiple Choices per Decision Point Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 61
62 Logic Modelling: Comparison Criteria Structured English Decision Tables Decision Trees Determining Conditions and Actions Second Best Third Best Best Transforming Conditions and Actions into Sequence Best Third Best Best Checking Consistency and Completeness Third Best Best Best Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 62
63 Logic Modelling Logic Modelling End Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 63
64 Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 64
65 What is software? Software is: Computer programs + associated documentation Software products may be: Generic Software - developed to be sold to a range of different customers Bespoke (custom) Software - developed for a single customer according to given specification Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 65
66 What is Product Engineering? Producing a product Optimally Highest quality Minimum resources Under specified constraints Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 66
67 Software Engineering Concerned with developing: High quality software Within budget On time Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 67
68 Software costs Software costs often dominate system costs. System costs includes: Hardware cost Software cost people cost For systems with a long life, maintenance costs may be several times development costs Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 68
69 What is software engineering? Software engineering is concerned with all aspects of software production Software engineering is a modelling activity: Deals with complex systems through modelling Software engineering is a problem-solving activity: models are used to search for an acceptable solution Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 69
70 What is software engineering? (cont.) Software engineering is not a mathematical science: it relies on empirical methods Software engineering is a knowledge acquisition activity Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 70
71 What is the difference between software engineering and product engineering? Product engineering A prototype is realised & tested Thousands of items are manufactured Software engineering Every software is a prototype No manufacturing Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 71
72 Software engineers Software engineers should adopt a systematic and organised approach to their work and use appropriate tools and techniques depending on the problem to be solved, the development constraints and the resources available Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 72
73 What is the difference between software engineering and computer science? Computer science is concerned with theory and fundamentals Software engineering is concerned with the practicalities of developing useful software Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 73
74 What is the difference between software engineering and system engineering? System engineering is concerned with all aspects of computer-based systems development including hardware, software and process engineering. Software engineering is part of system engineering System engineers are involved in system specification, architectural design, integration and deployment Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 74
75 System Development Life Cycle SDLC Includes the following phases: Project Initiation Feasibility Study Analysis Design Implementation Coding + Documentation + Testing + Conversion + Training + Installation Maintenance Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 75
76 System Development Life Cycle SDLC Project Initiation New System Feasibility Study Analysis Design Coding Implementation Testing Conversion Training/Installation Maintenance System Death Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 76
77 System Development Life Cycle SDLC (cont.) Project Initiation Client faces a problem Needs for an improvement Sources of potential projects: Top management Steering committee Users : Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 77
78 System Development Life Cycle SDLC (cont.) Feasibility Study Alternative solutions Economic feasibility (cost) Technical feasibility (technology available) Schedule feasibility (delivery date) Human Resources feasibility ( New staff, Training) Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 78
79 System Development Life Cycle SDLC (cont.) Analysis: Determine and structure system requirements Facts Finding / Requirement Elicitation / Domain Info / Requirements capturing Requirements Structuring into Diagrams & Text Natural language for text Context Diagram Data Flow Diagrams DFDs ER Diagrm Decision Trees / Decision tables Use Case Diagrams, Use Case description (for Object Oriented Analysis OOA ) Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 79
80 System Development Life Cycle SDLC (cont.) Design: Create new System designs System Architecture design Database Design Normalised relations Input GUI design Graphical User Interface Forms Menus Icons Dialogue boxes, etc Output design Reports Queries Interface Design with Subsystems (modules) other external systems (bank sys, GOSI sys, ) Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 80
81 System Development Life Cycle SDLC (cont.) Implementation: Translate designs into a working system Coding Testing Documentation Data conversion (from old to new system) Training Installation Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 81
82 System Development Life Cycle SDLC (cont.) Maintenance: Evolving system Requirements WILL CHANGE to reflect dynamic environment of business Continuous process Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 82
83 What is a software process? A set of activities whose goal is the development or evolution of software Generic activities in all software processes are: Specification - what the system should do and its development constraints Development - production of the software system Validation - checking that the software is what the customer wants Evolution Maintenance - changing the software in response to changing demands Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 83
84 What is a model? An abstract representation of a system that enables us to answer questions about the system Used with too large, too small, too complex, or too expensive systems Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 84
85 What is a software process model? An abstract representation of a software process, presented from a specific perspective Examples of process perspectives are: Workflow perspective - sequence of activities Data-flow perspective - information flow Role/action perspective - who does what Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 85
86 Software Generic Process Models 4 Generic process models: 1. Waterfall model 2. Evolutionary development model 3. Formal transformation model 4. Integration from reusable components model Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 86
87 Costs of software engineering Roughly: 60% of costs are development costs, 40% of costs are testing costs. For custom software, maintenance costs often exceed development costs Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 87
88 Costs of software engineering (cont.) Costs vary depending on the type of system being developed and the requirements of system attributes such as performance and system reliability Distribution of costs depends on the development model that is used Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 88
89 What are software engineering methods? Structured approaches to software development which include: Model descriptions Rules Descriptions of graphical models which should be produced Constraints applied to system models Recommendations Advice on good design practice Process guidance What activities to follow Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 89
90 What is CASE tool (Computer-Aided Software Engineering) Software system (tool) Provides automated support for software process activities. Upper-CASE Tools to support the early process activities of requirements and design Lower-CASE Tools to support late process activities such as programming, debugging and testing Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 90
91 Attributes of good software The software should deliver the required functionality and performance to the user The software and should be maintainable, dependable and usable Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 91
92 Attributes of good software (cont.) Maintainability Software should be designed keeping in mind that it will evolve to meet changing needs (changes in Business Environment) Reliability Software must be reliable Efficiency Software should not make wasteful use of system resources Usability Software must be usable by the users for which it was designed Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 92
93 Key challenges facing software engineering Challenges in coping with: Legacy systems Old, valuable systems that must be maintained and updated Heterogeneity Systems are distributed and include a mix of: Hardware, and Software written using different languages, and Different operating systems Delivery Pressure for faster delivery of software Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 93
94 Professional and ethical responsibility Software engineering involves wider responsibilities than simply the application of technical skills Software engineers must behave in an honest and ethically responsible way if they are to be respected as professionals Software Engineering CSC 342/Dr. Ghazy Assassa Systems Analysis: Requirements Structuring Slide 94
Chapter 7: Structuring System Process Requirements
Chapter 7: Structuring System Process Requirements Multiple Choice Questions 1. Data flow diagrams that concentrate on the movement of data between processes are referred to as: a. process models b. data
Topics covered. An Introduction to Software Engineering. FAQs about software engineering Professional and ethical responsibility
An Introduction to Software Engineering Antinisca Di Marco [email protected] Objectives To introduce software engineering and to explain its importance To set out the answers to key questions about
Introduction. Getting started with software engineering. Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 1 Slide 1
Introduction Getting started with software engineering Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 1 Slide 1 Objectives To introduce software engineering and to explain its importance
Data Flow Diagrams. Outline. Some Rules for External Entities 1/25/2010. Mechanics
Data Flow Diagrams Mechanics Outline DFD symbols External entities (sources and sinks) Data Stores Data Flows Processes Types of diagrams Step by step approach Rules Some Rules for External Entities External
Aerospace Software Engineering
16.35 Aerospace Software Engineering Offered by the Dept. of Aero/Astro, MIT Autumn 2002 Instructors: Prof. I. K. Lundqvist Prof. N. G. Leveson Guest lecturers: Prof. K. Vicente R. Racine G. Romanski M.
Introduction to Software Engineering. Adopted from Software Engineering, by Ian Sommerville
Introduction to Software Engineering Adopted from Software Engineering, by Ian Sommerville To discuss the factors that led to software failures and the phenomenon of the Software Crisis ; To introduce
An Introduction to Software Engineering
An Introduction to Software Engineering Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 1 Slide 1 Objectives To introduce software engineering and to explain its importance To set out the
An Introduction to Software Engineering. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 1 Slide 1
An Introduction to Software Engineering Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 1 Slide 1 Objectives To introduce software engineering and to explain its importance To set out the
Topic # 08. Structuring System Process Requirements. CIS Life Cycle and Requirements Structuring Stage
Topic # 08 Structuring System Process Requirements CIS Life Cycle and Requirements Structuring Stage Objectives 1. Data Flow Diagrams 2. Rules and Guidelines to DFD development that lead to accurate and
CMSC 435: Software Engineering Course overview. Topics covered today
CMSC 435: Software Engineering Course overview CMSC 435-1 Topics covered today Course requirements FAQs about software engineering Professional and ethical responsibility CMSC 435-2 Course Objectives To
An Introduction to Software Engineering
An Introduction to Software Engineering ACSC 383 Software Engineering Efthyvoulos C. Kyriacou (PhD) Assoc. Prof. Computer Science and Engineering Department Resources : Ian Sommervile Software engineering,
LECTURE 11: PROCESS MODELING
LECTURE 11: PROCESS MODELING Outline Logical modeling of processes Data Flow Diagram Elements Functional decomposition Data Flows Rules and Guidelines Structured Analysis with Use Cases Learning Objectives
Software Engineering. What is SE, Anyway? Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering What is SE, Anyway? Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To introduce software engineering and to explain its importance To set out the answers
Introduction. Getting started with software engineering. Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 1 Slide 1
Introduction Getting started with software engineering Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 1 Slide 1 Why? the Therac-25 Failure 1985-1987 Therac-25 Radiation Treatment Machine
Why Data Flow Diagrams?
Flow Diagrams A structured analysis technique that employs a set of visual representations of the data that moves through the organization, the paths through which the data moves, and the processes that
Software Engineering UNIT -1 OVERVIEW
UNIT -1 OVERVIEW The economies of ALL developed nations are dependent on software. More and more systems are software controlled. Software engineering is concerned with theories, methods and tools for
Chapter 6. Data-Flow Diagrams
Chapter 6. Data-Flow Diagrams Table of Contents Objectives... 1 Introduction to data-flow diagrams... 2 What are data-flow diagrams?... 2 An example data-flow diagram... 2 The benefits of data-flow diagrams...
(Refer Slide Time 00:56)
Software Engineering Prof.N. L. Sarda Computer Science & Engineering Indian Institute of Technology, Bombay Lecture-12 Data Modelling- ER diagrams, Mapping to relational model (Part -II) We will continue
Process Modelling. Data flow Diagrams. Process Modelling Data Flow Diagrams. CSE1204 - Information Systems 1
CSE04 - Information s Process Modelling Data Flow Diagrams Process Modelling Process modelling aims to graphically represent the processes which capture, manipulate, store and distribute data. data flow
D6 INFORMATION SYSTEMS DEVELOPMENT. SOLUTIONS & MARKING SCHEME. June 2013
D6 INFORMATION SYSTEMS DEVELOPMENT. SOLUTIONS & MARKING SCHEME. June 2013 The purpose of these questions is to establish that the students understand the basic ideas that underpin the course. The answers
1. Process Modeling. Process Modeling (Cont.) Content. Chapter 7 Structuring System Process Requirements
Content Chapter 7 Structuring System Process Requirements Understand the logical (&physical) process modeling by using data flow diagrams (DFDs) Draw DFDs & Leveling Balance higher-level and lower-level
Understanding Data Flow Diagrams Donald S. Le Vie, Jr.
Understanding Flow Diagrams Donald S. Le Vie, Jr. flow diagrams (DFDs) reveal relationships among and between the various components in a program or system. DFDs are an important technique for modeling
6-1. Process Modeling
6-1 Process Modeling Key Definitions Process model A formal way of representing how a business system operates Illustrates the activities that are performed and how data moves among them Data flow diagramming
IF2261 Software Engineering. Introduction. What is software? What is software? What is software? Failure Curve. Software Applications Type
IF2261 Software Engineering Introduction Program Studi Teknik Informatika STEI ITB What is software? Definitions: Computer programs, procedures, and possibly associated documentation and data pertaining
To introduce software process models To describe three generic process models and when they may be used
Software Processes Objectives To introduce software process models To describe three generic process models and when they may be used To describe outline process models for requirements engineering, software
Software Engineering. Software Processes. Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering Software Processes Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To introduce software process models To describe three generic process models and when
Functional Data Flow Diagrams. Outline
Introduction to Database Systems Functional s Ling Liu Associate Professor College of Computing, Georgia Tech 1 Outline This week: Exercise of Relational Algebra Techniques for ming Next Week Midterm 1
Collated Food Requirements. Received orders. Resolved orders. 4 Check for discrepancies * Unmatched orders
Introduction to Data Flow Diagrams What are Data Flow Diagrams? Data Flow Diagrams (DFDs) model that perspective of the system that is most readily understood by users the flow of information around the
Unit Title: Personnel Information Systems Unit Reference Number: F/601/7510 Guided Learning Hours: 160 Level: Level 5 Number of Credits: 18
Unit Title: Personnel Information Systems Unit Reference Number: F/601/7510 Guided Learning Hours: 160 Level: Level 5 Number of Credits: 18 Unit objective and aim(s): This unit aims to give learners a
Software Design Document (SDD) Template
(SDD) Template Software design is a process by which the software requirements are translated into a representation of software components, interfaces, and data necessary for the implementation phase.
A Project Based Approach for Teaching System Analysis, Design, and Implementation Courses
A Project Based Approach for Teaching System Analysis, Design, and Implementation Courses Nabil A. Yousif 1 and Masoud Naghedolfeizi 2 Abstract-In curricula of Computer Information Systems at Fort Valley
Software Engineering. Software Development Process Models. Lecturer: Giuseppe Santucci
Software Engineering Software Development Process Models Lecturer: Giuseppe Santucci Summary Modeling the Software Process Generic Software Process Models Waterfall model Process Iteration Incremental
Object Oriented Software Models
Software Engineering CSC 342/ Dr Ghazy Assassa Page 1 Object Oriented Software Models Use case diagram and use case description 1. Draw a use case diagram for a student-course-registration system. Show
Chapter 13 BUILDING INFORMATION SYSTEMS. How does building new systems produce organizational change?
MANAGING THE DIGITAL FIRM, 12 TH EDITION Learning Objectives Chapter 13 BUILDING INFORMATION SYSTEMS VIDEO CASES Case 1: IBM: Business Process Management in a Service Oriented Architecture and Managing
CS 389 Software Engineering. Lecture 2 Chapter 2 Software Processes. Adapted from: Chap 1. Sommerville 9 th ed. Chap 1. Pressman 6 th ed.
CS 389 Software Engineering Lecture 2 Chapter 2 Software Processes Adapted from: Chap 1. Sommerville 9 th ed. Chap 1. Pressman 6 th ed. Topics covered Software process models Process activities Coping
Software Engineering Reference Framework
Software Engineering Reference Framework Michel Chaudron, Jan Friso Groote, Kees van Hee, Kees Hemerik, Lou Somers, Tom Verhoeff. Department of Mathematics and Computer Science Eindhoven University of
Chapter 3. Data Flow Diagrams
Chapter 3. Data Flow Diagrams Table of Contents Objectives... 1 Introduction to Data Flow Diagrams... 2 What are Data Flow Diagrams?... 2 An example Data Flow Diagram... 2 The benefits of Data Flow Diagrams...
GCE APPLIED ICT A2 COURSEWORK TIPS
GCE APPLIED ICT A2 COURSEWORK TIPS COURSEWORK TIPS A2 GCE APPLIED ICT If you are studying for the six-unit GCE Single Award or the twelve-unit Double Award, then you may study some of the following coursework
How To Develop Software
Software Engineering Prof. N.L. Sarda Computer Science & Engineering Indian Institute of Technology, Bombay Lecture-4 Overview of Phases (Part - II) We studied the problem definition phase, with which
Data Analysis 1. SET08104 Database Systems. Copyright @ Napier University
Data Analysis 1 SET08104 Database Systems Copyright @ Napier University Entity Relationship Modelling Overview Database Analysis Life Cycle Components of an Entity Relationship Diagram What is a relationship?
CHAPTER 3. Data Modeling and Database Design- Part1
CHAPTER 3 Data Modeling and Database Design- Part1 INTRODUCTION Questions to be addressed in this chapter include: What is the purpose of documentation? Why do accountants need to understand documentation?
Software Engineering. Objectives. Designing, building and maintaining large software systems
Software Engineering Objectives Designing, building and maintaining large software systems To define software engineering and explain its importance To discuss the concepts of software products and software
Software Engineering. Software Engineering. Software Costs
Software Engineering Software Engineering is the science and art of building significant software systems that are: 1) on time 2) on budget 3) with acceptable performance 4) with correct operation. Ian
Unit 2.1. Data Analysis 1 - V2.0 1. Data Analysis 1. Dr Gordon Russell, Copyright @ Napier University
Data Analysis 1 Unit 2.1 Data Analysis 1 - V2.0 1 Entity Relationship Modelling Overview Database Analysis Life Cycle Components of an Entity Relationship Diagram What is a relationship? Entities, attributes,
Requirements Analysis Concepts & Principles. Instructor: Dr. Jerry Gao
Requirements Analysis Concepts & Principles Instructor: Dr. Jerry Gao Requirements Analysis Concepts and Principles - Requirements Analysis - Communication Techniques - Initiating the Process - Facilitated
How To Understand Software Engineering
PESIT Bangalore South Campus Department of MCA SOFTWARE ENGINEERING 1. GENERAL INFORMATION Academic Year: JULY-NOV 2015 Semester(s):III Title Code Duration (hrs) SOFTWARE ENGINEERING 13MCA33 Lectures 52Hrs
General Problem Solving Model. Software Development Methodology. Chapter 2A
General Problem Solving Model Software Development Methodology These focus on understanding what the problem is about Chapter 2A Concerned with understanding more about the nature of the problem and possible
Functional Modeling with Data Flow Diagrams
Functional Modeling with Data Flow Diagrams Amasi Elbakush 5771668 Teaching Assistant : Daniel Alami Utrecht University 1 Introduction Data Flow Diagrams (DFDs) are a visual representation of the flow
Chapter 1 The Systems Development Environment
Your Objects of SA&D Study Chapter 1 The Systems Development Environment 2011 by Prentice Hall: J.A.Hoffer et.al., Modern Systems Analysis & Design, 6 th Edition 1/55 2/55 Course Content Fundamental of
Software Processes. Coherent sets of activities for specifying, designing, implementing and testing software systems
Questions What is the life cycle of a software product? Why do we need software process models? What are the goals of a software process and what makes it different from other industrial processes? Software
Subject : System Analysis and Design BCA -II UNIT 1
Subject : System Analysis and Design BCA -II UNIT 1 Ques1 what is system design.explain its types. Ans: SYSTEM DESIGN :Systems design is the process or art of defining the architecture, components, modules,
1.1 The Nature of Software... Object-Oriented Software Engineering Practical Software Development using UML and Java. The Nature of Software...
1.1 The Nature of Software... Object-Oriented Software Engineering Practical Software Development using UML and Java Chapter 1: Software and Software Engineering Software is intangible Hard to understand
SOFTWARE ENGINEERING INTERVIEW QUESTIONS
SOFTWARE ENGINEERING INTERVIEW QUESTIONS http://www.tutorialspoint.com/software_engineering/software_engineering_interview_questions.htm Copyright tutorialspoint.com Dear readers, these Software Engineering
Use Case Diagrams. Tutorial
Use Case Diagrams Tutorial What is a use case? A requirements analysis concept A case of a use of the system/product Describes the system's actions from a the point of view of a user Tells a story A sequence
Algorithms, Flowcharts & Program Design. ComPro
Algorithms, Flowcharts & Program Design ComPro Definition Algorithm: o sequence of steps to be performed in order to solve a problem by the computer. Flowchart: o graphical or symbolic representation of
Fundamentals of Information Systems, Fifth Edition. Chapter 8 Systems Development
Fundamentals of Information Systems, Fifth Edition Chapter 8 Systems Development Principles and Learning Objectives Effective systems development requires a team effort of stakeholders, users, managers,
Software Engineering Question Bank
Software Engineering Question Bank 1) What is Software Development Life Cycle? (SDLC) System Development Life Cycle (SDLC) is the overall process of developing information systems through a multi-step
Introduction to Systems Analysis and Design
Introduction to Systems Analysis and Design What is a System? A system is a set of interrelated components that function together to achieve a common goal. The components of a system are called subsystems.
Overview. System Definition Webster s Dictionary. System Engineering Hierarchy. System Engineering. Computer-Based Systems [PRE2005]
IF2261 Software Engineering Engineering Program Studi Teknik Informatika STEI ITB Overview Before software can be engineered: the system it is part of must be understood, the overall objective of the system
Software Processes. Topics covered
Software Processes cmsc435-1 Topics covered Systems vs. software engineering Software process models Process iteration Process activities Computer-aided software engineering cmsc435-2 What is a system?
Unit 1 Learning Objectives
Fundamentals: Software Engineering Dr. Rami Bahsoon School of Computer Science The University Of Birmingham [email protected] www.cs.bham.ac.uk/~rzb Office 112 Y9- Computer Science Unit 1. Introduction
Process Analysis. Work Process Documentation Guidelines. Purpose
Purpose The purpose of this tool is threefold: Convey a common understanding of the basis for documenting work processes by defining the five levels of detail for capturing work process Provide instructions
CS 487. Week 8. Reference: 1. Software engineering, roger s. pressman. Reading: 1. Ian Sommerville, Chapter 3. Objective:
CS 487 Week 8 Reading: 1. Ian Sommerville, Chapter 3. Objective: 1. To check the understandibility of the students in life cycle and process model for development of a software product. 2. To check if
Applications in Business. Embedded Systems. FIGURE 1-17 Application Types and Decision Types
22 CHAPTER 1 Overview of Software Engineering she may determine his or her degree of confidence in the ES's results. These four application types-transaction, query, DSS, and ES-will be referenced throughout
Foundations for Systems Development
Foundations for Systems Development ASSIGNMENT 1 Read this assignment introduction. Then, read Chapter 1, The Systems Development Environment, on pages 2 25 in your textbook. What Is Systems Analysis and
Software Processes. The software process. Generic software process models. Waterfall model. Waterfall model phases
Software Processes CSC 221 Introduction to Software Engineering software processes extract from Sommerville s chapter 3 slides Alan Dix Coherent sets of activities for specifying, designing, implementing
Announcements. Project status demo in class
Web Design cs465 Announcements Project status demo in class Why? You will likely be involved in Web design You have many of the skills necessary Understand similarities and differences between GUI design
BUSINESS PROCESS DOCUMENTATION
BUSINESS PROCESS DOCUMENTATION TRAINING COURSE October, 2008 This publication was produced for review by the United States Agency for International Development. It was prepared by Ali Rammal, Tax Administration
Project Management Planning
Develop Project Tasks One of the most important parts of a project planning process is the definition of activities that will be undertaken as part of the project. Activity sequencing involves dividing
VIDYAVAHINI FIRST GRADE COLLEGE
VIDYAVAHINI FIRST GRADE COLLEGE SOFTWARE ENGINEERING 5 th Sem BCA Vidyavahini First Grade College Near Puttanjaneya Temple, Kuvempunagar, Tumkur 572103. E-Mail:[email protected] Website:www.vidyavahini.org/bca
Determining requirements
Systems Analysis Determining requirements ผ สอน ดร.สล ล บ ญพราหมณ ITM-631 Information System Development ... การจะพ ฒนาท กส งท กอย างให เจร ญน น จะต องสร างและเสร ม ข นจากพ นฐานเด มท ม อย ก อนท งส น ถ
Axiomatic design of software systems
Axiomatic design of software systems N.P. Suh (1), S.H. Do Abstract Software is playing an increasingly important role in manufacturing. Many manufacturing firms have problems with software development.
Software development life cycle. Software Engineering - II ITNP92 - Object Oriented Software Design. Requirements. Requirements. Dr Andrea Bracciali
Software development life cycle Software life cycle: Software Engineering - II ITNP92 - Object Oriented Software Design Dr Andrea Bracciali Module Co-ordinator 4B86 [email protected] Spring 2014 (elicitation)
An Automatic Tool for Checking Consistency between Data Flow Diagrams (DFDs)
An Automatic Tool for Checking Consistency between Data Flow Diagrams (DFDs) Rosziati Ibrahim, Siow Yen Yen Abstract System development life cycle (SDLC) is a process uses during the development of any
Answers to Review Questions
Tutorial 2 The Database Design Life Cycle Reference: MONASH UNIVERSITY AUSTRALIA Faculty of Information Technology FIT1004 Database Rob, P. & Coronel, C. Database Systems: Design, Implementation & Management,
III. Structured Analysis and Design Technique (SADT) SADT: Structured Analysis and Design Technique
III. Structured Analysis and Design Technique (SADT) Hisry Data and Activities SADT Diagrams The SADT Analysis Process Data Flow Diagrams 2004 John Mylopoulos SADT -- 1 SADT: Structured Analysis and Design
Chapter 1 Introduction
Chapter 1 Introduction Chapter 1 Introduction Slide 1 Topics covered Professional software development What is meant by software engineering. Addendum to Sommerville s FAQs Software engineering ethics
Data Flow Diagram. Data Flow Diagrams (DFDs)
Data Flow Diagram Introduction The three most important modeling techniques used in analysing and building information systems are: Data Flow Diagramming (DFDs), Logical Data Structure modelling (LDSs),
Objectives After completion of study of this unit you should be able to:
Data Flow Diagram Tutorial Objectives After completion of study of this unit you should be able to: Describe the use of data flow diagrams Produce a data flow diagram from a given case study including
SE 367 Software Engineering Basics of Software Engineering
Slide 1 SE 367 Software Engineering Basics of Software Engineering Slide 2 Introduction Getting started with software engineering Objectives To introduce software engineering and to explain its importance
Student Attendance Through Mobile Devices
Student Attendance Through Mobile Devices Anurag Rastogi Kirti Gupta Department of Computer Science and Engineering National Institute of Technology Rourkela Rourkela-769 008, Odisha, India Student Attendance
Acknowledgement. Software Engineering. CS 3141: Team Software Project Introduction
CS 3141: Team Software Project Introduction Ali Ebnenasir Department of Computer Science Michigan Technological University Acknowledgement Betty H.C. Cheng Software Engineering Systematic approach for
Entity / Activity Table for Causeway Cash Receipts System
Entity / Activity Table for Causeway Cash System Entity Activity 1 Sends checks and remittance advices (together) 2 Mailroom Clerk Endorses checks 3 Mailroom Clerk Processes remittance - writes amount
Chapter 8 Approaches to System Development
Systems Analysis and Design in a Changing World, sixth edition 8-1 Chapter 8 Approaches to System Development Table of Contents Chapter Overview Learning Objectives Notes on Opening Case and EOC Cases
Process/Workflow Analysis Quiz
Process/Workflow Analysis Quiz Question ID: 1 Outline Section: WF A flowchart can be used to show all except A: the specifications of the system. B: re-engineered clarity. C: existing confusion. D: the
System Requirements Specification (SRS) (Subsystem and Version #)
of the (Subsystem and Version #) () (Document Revision Number) Contract (No.) Task (No.) GSA Contract (No.) Prepared for: The United States Department of Agriculture Food & Nutrition Service (FNS)/ Information
Systems Analysis Process Modeling (DFD) 1 of 10. Analysis 003
Systems Analysis Process Modeling (DFD) 1 of 10 Goals: Process modeling (Data flow diagrams) Recognize and describe abstractions Identify the four elements of a DFD Construct a DFD Decompose a DFD Analysis
Software Development: The Waterfall Model
Steven Zeil June 7, 2013 Contents 1 Software Development Process Models 2 1.1 Components of the Waterfall Model................................. 2 1.1.1 What is a requirement?. 2 1.1.2 Testing..........
SOFTWARE REQUIREMENTS
SOFTWARE REQUIREMENTS http://www.tutorialspoint.com/software_engineering/software_requirements.htm Copyright tutorialspoint.com The software requirements are description of features and functionalities
LECTURE 1. SYSTEMS DEVELOPMENT
LECTURE 1. SYSTEMS DEVELOPMENT 1.1 INFORMATION SYSTEMS System A system is an interrelated set of business procedures used within one business unit working together for a purpose A system has nine characteristics
Karunya University Dept. of Information Technology
PART A Questions 1. Mention any two software process models. 2. Define risk management. 3. What is a module? 4. What do you mean by requirement process? 5. Define integration testing. 6. State the main
NASCIO EA Development Tool-Kit Solution Architecture. Version 3.0
NASCIO EA Development Tool-Kit Solution Architecture Version 3.0 October 2004 TABLE OF CONTENTS SOLUTION ARCHITECTURE...1 Introduction...1 Benefits...3 Link to Implementation Planning...4 Definitions...5
CA ERwin Process Modeler Data Flow Diagramming
CA ERwin Process Modeler Data Flow Diagramming Overview Guide r7.3 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user
(BA122) Software Engineer s Workshop (SEW)
Training for the Business Analyst (BA122) Software Engineer s Workshop (SEW) Duration: 4 days CDUs (Continuing Development Units): 28 Description: A practical workshop covering the role of the Business-Systems
2. Analysis, Design and Implementation
2. Subject/Topic/Focus: Software Production Process Summary: Software Crisis Software as a Product: From Individual Programs to Complete Application Systems Software Development: Goals, Tasks, Actors,
Software Design. Design (I) Software Design Data Design. Relationships between the Analysis Model and the Design Model
Software Design Design (I) Software Design is a process through which requirements are translated into a representation of software. Peter Lo CS213 Peter Lo 2005 1 CS213 Peter Lo 2005 2 Relationships between
IT FOR BUSINESS AND FINANCE. BUSINESS PROCESSES and INFORMATION SYSTEMS
IT FOR BUSINESS AND FINANCE BUSINESS PROCESSES and INFORMATION SYSTEMS SYSTEM (definition) A group of interacting, interrelated, or interdependent elements forming a complex whole presenting the following
CS6403-SOFTWARE ENGINEERING UNIT-I PART-A
Handled By, VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur-603203. Department of Information Technology Question Bank- Even Semester 2014-2015 IV Semester CS6403-SOFTWARE ENGINEERING MS.R.Thenmozhi,
