UNIT IV SOFTWARE PROCESSES & TESTING SOFTWARE PROCESS - DEFINITION AND IMPLEMENTATION

Size: px
Start display at page:

Download "UNIT IV SOFTWARE PROCESSES & TESTING SOFTWARE PROCESS - DEFINITION AND IMPLEMENTATION"

Transcription

1 UNIT IV SOFTWARE PROCESSES & TESTING Software Process - Definition and implementation; internal Auditing and Assessments; Software testing - Concepts, Tools, Reviews, Inspections & Walkthroughs; P-CMM. SOFTWARE PROCESS - DEFINITION AND IMPLEMENTATION The software process A structured set of activities required to develop a software system. Many different software processes but all involve: o Specification defining what the system should do; o Design and implementation defining the organization of the system and implementing the system; o Validation checking that it does what the customer wants; o Evolution changing the system in response to changing customer needs. A software process model is an abstract representation of a process. It presents a description of a process from some particular perspective Software process descriptions activities in these processes such as specifying a data model, designing a user interface, etc. and the ordering of these activities Process descriptions may also include: o Products, which are the outcomes of a process activity; o Roles, which reflect the responsibilities of the people involved in the process; o Pre- and post-conditions, which are statements that are true before and after a process activity has been enacted or a product produced Software process models The waterfall model o Plan-driven model. Separate and distinct phases of specification and development. Incremental development o Specification, development and validation are interleaved. May be plan-driven or agile. Reuse-oriented software engineering o The system is assembled from existing components. May be plan-driven or agile. In practice, most large systems are developed using a process that incorporates elements from all of these models Waterfall Model MTech CSE (PT, ) SRM, Ramapuram 1 hcr:innovationcse@gg

2 There are separate identified phases in the waterfall model: o Requirements analysis and definition o System and software design o Implementation and unit testing o Integration and system testing o Operation and maintenance The main drawback of the waterfall model is the difficulty of accommodating change after the process is underway. In principle, a phase has to be complete before moving onto the next phase Problems Inflexible partitioning of the project into distinct stages makes it difficult to respond to changing customer requirements. o Therefore, this model is only appropriate when the requirements are well-understood and changes will be fairly limited during the design process. o Few business systems have stable requirements. The waterfall model is mostly used for large systems engineering projects where a system is developed at several sites. o In those circumstances, the plan-driven nature of the waterfall model helps coordinate the work Incremental development Incremental development benefits The cost of accommodating changing customer requirements is reduced. o The amount of analysis and documentation that has to be redone is much less than is required with the waterfall model. It is easier to get customer feedback on the development work that has been done. o Customers can comment on demonstrations of the software and see how much has been implemented. More rapid delivery and deployment of useful software to the customer is possible. o Customers are able to use and gain value from the software earlier than is possible with a waterfall process Incremental development problems The process is not visible. o Managers need regular deliverables to measure progress. If systems are developed quickly, it is not cost-effective to produce documents that reflect every version of the system. System structure tends to degrade as new increments are added. o Unless time and money is spent on refactoring to improve the software, regular change tends to corrupt its structure. Incorporating further software changes becomes increasingly difficult and costly MTech CSE (PT, ) SRM, Ramapuram 2 hcr:innovationcse@gg

3 Reuse-oriented software engineering Based on systematic reuse where systems are integrated from existing components or COTS (Commercialoff-the-shelf) systems. Process stages o Component analysis; o Requirements modification; o System design with reuse; o Development and integration. Reuse is now the standard approach for building many types of business system Types of software component in reuse Web services that are developed according to service standards and which are available for remote invocation. Collections of objects that are developed as a package to be integrated with a component framework such as.net or J2EE. Stand-alone software systems (COTS) that are configured for use in a particular environment Process activities Real software processes are inter-leaved sequences of technical, collaborative and managerial activities with the overall goal of specifying, designing, implementing and testing a software system. The four basic process activities of o specification, o development, o validation and o evolution are organized differently in different development processes. In the waterfall model, they are organized in sequence in incremental development they are inter-leaved Software specification The requirements engineering process The process of establishing what services are required and the constraints on the system s operation and development. MTech CSE (PT, ) SRM, Ramapuram 3 hcr:innovationcse@gg

4 Requirements engineering process o Feasibility study Is it technically and financially feasible to build the system? o Requirements elicitation and analysis What do the system stakeholders require or expect from the system? o Requirements specification Defining the requirements in detail o Requirements validation Checking the validity of the requirements Software design and implementation The process of converting the system specification into an executable system. Software design o Design a software structure that realises the specification; Implementation o Translate this structure into an executable program; The activities of design and implementation are closely related and may be inter-leaved A general model of the design process Design activities Architectural design, where you identify the overall structure of the system, the principal components (sometimes called sub-systems or modules), their relationships and how they are distributed. Interface design, where you define the interfaces between system components. Component design, where you take each system component and design how it will operate. Database design, where you design the system data structures and how these are to be represented in a database Software validation Verification and validation (V & V) is intended to show that a system conforms to its specification and meets the requirements of the system customer. Involves checking and review processes and system testing. System testing involves executing the system with test cases that are derived from the specification of the real data to be processed by the system. Testing is the most commonly used V & V activity Stages of testing MTech CSE (PT, ) SRM, Ramapuram 4 hcr:innovationcse@gg

5 Development or component testing o Individual components are tested independently; o Components may be functions or objects or coherent groupings of these entities. System testing o Testing of the system as a whole. Testing of emergent properties is particularly important. Acceptance testing o Testing with customer data to check that the system meets the customer s needs Testing phases in a plan-driven software process (V Model) Software evolution Software is inherently flexible and can change. As requirements change through changing business circumstances, the software that supports the business must also evolve and change. Although there has been a demarcation between development and evolution (maintenance) this is increasingly irrelevant as fewer and fewer systems are completely new System evolution Summary Software processes are the activities involved in producing a software system. Software process models are abstract representations of these processes. General process models describe the organization of software processes. Examples of these general models include the waterfall model, incremental development, and reuseoriented development Requirements engineering is the process of developing a software specification. MTech CSE (PT, ) SRM, Ramapuram 5 hcr:innovationcse@gg

6 Design and implementation processes are concerned with transforming a requirements specification into an executable software system. Software validation is the process of checking that the system conforms to its specification and that it meets the real needs of the users of the system. Software evolution takes place when you change existing software systems to meet new requirements. The software must evolve to remain useful Coping with change Change is inevitable in all large software projects. o Business changes lead to new and changed system requirements o New technologies open up new possibilities for improving implementations o Changing platforms require application changes Change leads to rework so the costs of change include both rework (e.g. re-analysing requirements) as well as the costs of implementing new functionality Reducing the costs of rework Change avoidance, where the software process includes activities that can anticipate possible changes before significant rework is required. o For example, a prototype system may be developed to show some key features of the system to customers. Change tolerance, where the process is designed so that changes can be accommodated at relatively low cost Software prototyping A prototype is an initial version of a system used to demonstrate concepts and try out design options. A prototype can be used in: o The requirements engineering process to help with requirements elicitation and validation; o In design processes to explore options and develop a UI design; o In the testing process to run back-to-back tests. Benefits of prototyping Improved system usability. A closer match to users real needs. Improved design quality. Improved maintainability. Reduced development effort. The process of prototype development Prototype development May be based on rapid prototyping languages or tools May involve leaving out functionality Prototype should focus on areas of the product that are not well-understood; Error checking and recovery may not be included in the prototype; Focus on functional rather than non-functional requirements such as reliability and security MTech CSE (PT, ) SRM, Ramapuram 6 hcr:innovationcse@gg

7 Incremental delivery Rather than deliver the system as a single delivery, the development and delivery is broken down into increments with each increment delivering part of the required functionality. User requirements are prioritised and the highest priority requirements are included in early increments. Once the development of an increment is started, the requirements are frozen though requirements for later increments can continue to evolve Incremental development and delivery Incremental development o Develop the system in increments and evaluate each increment before proceeding to the development of the next increment; o Normal approach used in agile methods; o Evaluation done by user/customer proxy. Incremental delivery o Deploy an increment for use by end-users; o More realistic evaluation about practical use of software; o Difficult to implement for replacement systems as increments have less functionality than the system being replaced Incremental delivery Incremental delivery advantages Customer value can be delivered with each increment so system functionality is available earlier. Early increments act as a prototype to help elicit requirements for later increments. Lower risk of overall project failure. The highest priority system services tend to receive the most testing Incremental delivery problems Most systems require a set of basic facilities that are used by different parts of the system. o As requirements are not defined in detail until an increment is to be implemented, it can be hard to identify common facilities that are needed by all increments. The essence of iterative processes is that the specification is developed in conjunction with the software Boehm s spiral model of the software process Process is represented as a spiral rather than as a sequence of activities with backtracking. Each loop in the spiral represents a phase in the process. No fixed phases such as specification or design - loops in the spiral are chosen depending on what is required. Risks are explicitly assessed and resolved throughout the process. MTech CSE (PT, ) SRM, Ramapuram 7 hcr:innovationcse@gg

8 The Rational Unified Process A modern generic process derived from the work on the UML and associated process. Brings together aspects of the 3 generic process models discussed previously. Normally described from 3 perspectives o A dynamic perspective that shows phases over time; o A static perspective that shows process activities; o A practive perspective that suggests good practice RUP good practice Visually model software: Use graphical UML models to present static and dynamic views of the software. Verify software quality: Ensure that the software meet s organizational quality standards. Control changes to software Manage software changes using a change management system and configuration management tools Summary Processes should include activities to cope with change. o This may involve a prototyping phase that helps avoid poor decisions on requirements and design. Processes may be structured for iterative development and delivery so that changes may be made without disrupting the system as a whole. The Rational Unified Process is a modern generic process model that is organized into phases (inception, elaboration, construction and transition) but separates activities (requirements, analysis and design, etc.) from these phases MTech CSE (PT, ) SRM, Ramapuram 8 hcr:innovationcse@gg

9 INTERNAL AUDITING AND ASSESSMENTS TBD MTech CSE (PT, ) SRM, Ramapuram 9 hcr:innovationcse@gg

10 SOFTWARE TESTING CONCEPTS Software Testing Once source code has been generated, software must be tested to uncover (and correct) as many errors as possible before delivery to the customer software testing techniques provide systematic guidance for designing tests that o (1) exercise the internal logic of software components, o (2) exercise the input and output domains of the program to uncover errors in program function, behavior. and performance Done by software engineer and testing specialists Why it is important Reviews and other SQA activities can and do uncover errors, but they are not sufficient. Every time the program is executed, the customer tests it! Therefore, you have to execute the program before it gets to the customer with the specific intent of finding and removing all errors. In order to find the highest possible number of errors, tests must be conducted systematically and test cases must be designed using disciplined techniques. Software is tested from two different perspectives: Internal program logic is exercised using white box test case design techniques. Software requirements are exercised using black box test case design techniques. intent is to find the maximum number of errors with the minimum amount of effort and time Testing Principles All tests should be traceable to customer requirements Tests should be planned long before testing begins The Pareto principle applies to software testing Testing should begin in the small and progress toward testing in the large. Exhaustive testing is not possible To be most effective, testing should be conducted by an independent third party Software Testability how easily [a computer program] can be tested Set of characteristics that lead to testable software Operability. "The better it works, the more efficiently it can be tested." Observability. "What you see is what you test." Controllability. "The better we can control the software, testing can be automated and optimized." Decomposability. "controlling the scope, can more quickly isolate problems & perform smarter retesting." Simplicity. "The less there is to test, the more quickly we can test it." o Functional, Structural, Code Stability. "The fewer the changes, the fewer the disruptions to testing." Understandability. "The more information we have, the smarter we will test." Attributes of a good test has a high probability of finding an error not redundant best of breed neither too simple nor too complex Test Case Design black-box tests are used to demonstrate that software functions are operational, that input is properly accepted and output is correctly produced, and that the integrity of external information (e.g., a database) is maintained. MTech CSE (PT, ) SRM, Ramapuram 10 hcr:innovationcse@gg

11 A black-box test examines some fundamental aspect of a system with little regard for the internal logical structure of the software. White-box testing of software is predicated on close examination of procedural detail. Logical paths through the software are tested by providing test cases that exercise specific sets of conditions and/or loops. The "status of the program" may be examined at various points to determine if the expected or asserted status corresponds to the actual status. White-Box Testing sometimes called glass-box testing, is a test case design method that uses the control structure of the procedural design to derive test cases. Using white-box testing methods, the software engineer can derive test cases that o (1) guarantee that all independent paths within a module have been exercised at least once, o (2) exercise all logical decisions on their true and false sides, o (3) execute all loops at their boundaries and within their operational bounds, and o (4) exercise internal data structures to ensure their validity. Basis Path Testing Basis path testing is a white-box testing technique enables the test case designer to derive a logical complexity measure of a procedural design and use this measure as a guide for defining a basis set of execution paths Flow Graph Notation Cyclomatic Complexity Cyclomatic complexity is a software metric that provides a quantitative measure of the logical complexity of a program. When used in the context of the basis path testing method, the value computed for cyclomatic complexity defines the number of independent paths in the basis set of a program and provides us with an upper bound for the number of tests that must be conducted to ensure that all statements have been executed at least once Deriving Test Cases Using the design or code as a foundation, draw a corresponding flow graph Determine the cyclomatic complexity of the resultant flow graph. Determine a basis set of linearly independent paths Prepare test cases that will force execution of each path in the basis set Graph Matrices A graph matrix is a square matrix whose size (i.e., number of rows and columns) is equal to the number of nodes on the flow graph. Each row and column corresponds to an identified node, and matrix entries correspond to connections (an edge) between nodes. MTech CSE (PT, ) SRM, Ramapuram 11 hcr:innovationcse@gg

12 Control Structure Testing Condition Testing Condition testing is a test case design method that exercises the logical conditions contained in a program module. Data Flow Testing The data flow testing method selects test paths of a program according to the locations of definitions and uses of variables in the program Loop Testing Loop testing is a white-box testing technique that focuses exclusively on the validity of loop constructs Four different classes of loops can be defined: o simple loops, o concatenated loops, o nested loops, and o unstructured loops MTech CSE (PT, ) SRM, Ramapuram 12 hcr:innovationcse@gg

13 Black-Box Testing also called behavioral testing, focuses on the functional requirements of the software. enables the software engineer to derive sets of input conditions that will fully exercise all functional requirements for a program. Black-box testing is not an alternative to white-box techniques. it is a complementary approach that is likely to uncover a different class of errors than white-box methods. Graph-Based Testing Methods Equivalence Partitioning Equivalence partitioning is a black-box testing method that divides the input domain of a program into classes of data from which test cases can be derived Equivalence classes may be defined according to the following guidelines: o 1. If an input condition specifies a range, one valid and two invalid equivalence classes are defined. o 2. If an input condition requires a specific value, one valid and two invalid equivalence classes are defined. o 3. If an input condition specifies a member of a set, one valid and one invalid equivalence class are defined. o 4. If an input condition is Boolean, one valid and one invalid class are defined. Boundary Value Analysis Boundary value analysis is a test case design technique that complements equivalence partitioning. Rather than selecting any element of an equivalence class, BVA leads to the selection of test cases at the "edges" of the class Comparison Testing independent versions of software be developed for critical applications,even when only a single version will be used in the delivered computer-based system Orthogonal Array Testing can be applied to problems in which the input domain is relatively small but too large to accommodate exhaustive testing MTech CSE (PT, ) SRM, Ramapuram 13 hcr:innovationcse@gg

14 useful in finding errors associated with region faults an error category associated with faulty logic within a software component Testing For Specialized Environments, Architectures, And Applications Testing GUIs o testing should be approached using automated tools Testing of Client/Server Architectures Testing Documentation and Help Facilities Testing for Real-Time Systems o The time-dependent, asynchronous nature of many real-time applications adds a new and potentially difficult element to the testing mix time. o Not only does the test case designer have to consider white- and black-box test cases but also event handling (i.e., interrupt processing), the timing of the data, and the parallelism of the tasks (processes) that handle the data o Types Task testing Behavioral testing Intertask testing System testing MTech CSE (PT, ) SRM, Ramapuram 14 hcr:innovationcse@gg

15 FORMAL DESIGN REVIEWS Participants of peer reviews three to five participants All the participants should be peers of the software system designer-author Team includes o A review leader o The author o Specialized professionals A review leader moderator in inspections, coordinator in walkthroughs (1) Be well versed in development of projects of the current type and familiar with its technologies. Preliminary acquaintance with the current project is not necessary. (2) Maintain good relationships with the author and the development team. (3) Come from outside the project team. MTech CSE (PT, ) SRM, Ramapuram 15 hcr:innovationcse@gg

16 (4) Display proven experience in coordination and leadership of professional meetings. (5) For inspections, training as a moderator is also required. The author The author is, invariably a participant in each type of peer review Specialized professionals Inspections o A designer o A coder or implementer o A tester Walkthroughs o A standards enforcer o A maintenance expert o A user representative Requisite preparations for peer reviews Peer review leader s preparations To determine, together with the author, which sections of the design document are to be reviewed. To select the team members To schedule the peer review sessions To distribute the document to the team members prior to the review session Peer review team s preparations for the review session to read the document sections to be reviewed and list their comments before the inspection session begins The peer review session The presenter reads a section of the document and adds, if needed, a brief explanation of the issues involved in his or her own words the participants either deliver their comments to the document or address their reactions to the comments should not deal with tentative solutions sessions should not exceed two hours in length, or schedule for more than twice daily Post-peer review activities The prompt, effective correction and reworking of all errors by the designer/author and his team, as performed by the inspection leader (or other team member) in the course of the assigned follow-up activities. Transmission of the inspection reports to the internal Corrective Action Board (CAB) for analysis. o This action initiates the corrective and preventive actions that will reduce future defects and improve productivity Peer review efficiency Using the following Metrics Peer review detection efficiency (average hours worked per defect detected). Peer review defect detection density (average number of defects detected per page of the design document). Internal peer review effectiveness (percentage of defects detected by peer review as a percentage of total defects detected by the developer). Peer review coverage Only a small percentage of the documents and total volume of code ever undergoes peer review. Coverage of about 5 15% of document pages still represents a significant contribution to total design quality because the factor that determines the benefits of peer review to total quality is not the percentage of pages covered but the choice of those pages MTech CSE (PT, ) SRM, Ramapuram 16 hcr:innovationcse@gg

17 INSPECTION AND WALK-THROUGH Inspection vs. Walkthrough participants and processes Why it is difficult to get reviewers Cost of poor quality is the combined cost of Prevention, Appraisal and Failure Reviewers effort constitute Appraisal costs Matter of Culture, Attitude and Expression tremendous amount of resistance is faced in making review most of us do not like to admit our mistakes Holding successful reviews require us to overcome this natural resistance In healthy SW engineering culture, reviewers understand the time spent on reviews is not wasted lack of knowledge of review process, review techniques and cultural issues, simple resistance to change Inspections MTech CSE (PT, ) SRM, Ramapuram 17

18 Software Inspections are a disciplined engineering practice for detecting and correcting defects in software artifacts, and preventing their leakage into field operations An inspection is a more formal process than a walkthrough used to collect metrics or statistics about the software process What do inspections cover o Inspections and walkthroughs are primarily intended to discover defects in software artifacts. o This is a static analysis technique of software testing. o In addition, inspections address three major tasks of process management: planning, measurement, control. Metrics o Inspections are used to collect quantitative quality data at defined points in the development process. o This can be used to give feedback to the developers, feed-forward to future development, and feed-into future steps of process. o Can also provide data on effectiveness of inspection techniques. What can be inspected o Inspections can be held a various points in development process. o Fagan recommended inspections on: o Detailed design o Cleanly compiled code o Completion of unit test At a minimum a formal inspection includes: o Designated moderator o Author of the work o At least one peer inspector Steps of inspection Planning o Planning begins when entry criteria for inspection type is met. o Moderator is selected usually a peer or technical leader o Selection may be made by developer, but this is generally not an ideal situation o Management is encouraged not to look at individual inspection results o Moderator verifies that product meets entry criteria and schedules future steps. Overview o Presentation to inspectors with any background information needed to properly review software product. o Purpose is educational only o Data collected is author preparation time and time spent on presentation Preparation o Individual activity o Author collects all material required for inspection o Inspectors study the material and complete inspection log. o Defects are noted at this step, but not collected Meeting o Meeting is conducted by moderator o Agenda includes: Introduction Establishing readiness Examining material and recording defects Review defects Determine disposition Debrief o Defect data is collected this time o Common meeting problems Interpersonal tensions are most likely to arise at this point Experienced moderators can detect and defuse this tension The more inspections that occur, the less likely interpersonal tensions are to interfere Effort should be made by all participants to keep emphasis on producing quality product, not making fault finding personal Rework MTech CSE (PT, ) SRM, Ramapuram 18 hcr:innovationcse@gg

19 o Performed by the author in response to defect disposition determined at meeting Follow-up o Moderator verifies that corrections are made o Moderator completes inspection management report and defect summary report Inspection Roles Author developer of work product Moderator an inspector responsible for organizing and reporting on inspection Reader an inspector who guies the examination of the product Recorder an inspector who enters all the defects found on the defect list Inspector Member of inspection team. Often chosen to represent specific role- designer, tester, technical writer, SQA, etc Inspection as Process Control When employed at various points through out the process, the completion of an inspection can trigger entry into a new development phase. Generally, Software Development Plan spells out entry and exit criteria and required participants in each type of inspection. Aspects of inspections Initial introduction of inspection into an organization can cause anxiety and tension among developers When it becomes clear that management supports inspection as a quality improvement technique and not a witch hunt, the effectiveness of the inspection increases. Inspection Data The collection and analysis of data is what sets inspections apart from other peer review techniques such as walkthroughs. This data can be used in a variety of ways by a variety of personnel Walkthroughs Structured, team debugging, peer code reviews a form of software peer review "in which a designer or programmer leads members of the development team and other interested parties through a software product, and the participants ask questions and make comments about possible errors, violation of development standards, and other problems Walkthrough is a more informal version of an inspection generally do not include designated moderator and are often led by the author of the software Objective to ensure high quality to find o bugs, misinterpretations, omissions, inconsistencies, ambiguities and anything that is unclear o any thing that is complex or difficult to modify o deviation from standards MTech CSE (PT, ) SRM, Ramapuram 19 hcr:innovationcse@gg

20 PEOPLE CMM Comments & Feedback Thanks to my family members who supported me while I spent hours and hours to prepare this. Your feedback is welcome at GHCRajan@gmail.com MTech CSE (PT, ) SRM, Ramapuram 20 hcr:innovationcse@gg

UNIT-III LIFE-CYCLE PHASES

UNIT-III LIFE-CYCLE PHASES INTRODUCTION: UNIT-III LIFE-CYCLE PHASES - If there is a well defined separation between research and development activities and production activities then the software is said to be in successful development

More information

Object-oriented Analysis and Design

Object-oriented Analysis and Design Object-oriented Analysis and Design Stages in a Software Project Requirements Writing Understanding the Client s environment and needs. Analysis Identifying the concepts (classes) in the problem domain

More information

Designing for recovery New challenges for large-scale, complex IT systems

Designing for recovery New challenges for large-scale, complex IT systems Designing for recovery New challenges for large-scale, complex IT systems Prof. Ian Sommerville School of Computer Science St Andrews University Scotland St Andrews Small Scottish town, on the north-east

More information

Software Maintenance Cycles with the RUP

Software Maintenance Cycles with the RUP Software Maintenance Cycles with the RUP by Philippe Kruchten Rational Fellow Rational Software Canada The Rational Unified Process (RUP ) has no concept of a "maintenance phase." Some people claim that

More information

Software Life Cycle Models

Software Life Cycle Models 1 Software Life Cycle Models The goal of Software Engineering is to provide models and processes that lead to the production of well-documented maintainable software in a manner that is predictable. 2

More information

Computer Science: Disciplines. What is Software Engineering and why does it matter? Software Disasters

Computer Science: Disciplines. What is Software Engineering and why does it matter? Software Disasters Computer Science: Disciplines What is Software Engineering and why does it matter? Computer Graphics Computer Networking and Security Parallel Computing Database Systems Artificial Intelligence Software

More information

Object-Oriented Design

Object-Oriented Design Object-Oriented Design Lecture 2: USDP Overview Department of Computer Engineering Sharif University of Technology 1 Review The Unified Modeling Language (UML) is a standard language for specifying, visualizing,

More information

CHAPTER 1: INTRODUCTION TO SOFTWARE ENGINEERING DESIGN

CHAPTER 1: INTRODUCTION TO SOFTWARE ENGINEERING DESIGN CHAPTER 1: INTRODUCTION TO SOFTWARE ENGINEERING DESIGN SESSION II: OVERVIEW OF SOFTWARE ENGINEERING DESIGN Software Engineering Design: Theory and Practice by Carlos E. Otero Slides copyright 2012 by Carlos

More information

Computer Science: Who Cares? Computer Science: It Matters. Computer Science: Disciplines

Computer Science: Who Cares? Computer Science: It Matters. Computer Science: Disciplines Computer Science: Who Cares? Computer Graphics (1970 s): One department, at one university Several faculty, a few more students $5,000,000 grant from ARPA Original slides by Chris Wilcox, Edited and extended

More information

Requirements Gathering using Object- Oriented Models

Requirements Gathering using Object- Oriented Models Requirements Gathering using Object- Oriented Models Cycle de vie d un logiciel Software Life Cycle The "software lifecycle" refers to all stages of software development from design to disappearance. The

More information

SWEN 256 Software Process & Project Management

SWEN 256 Software Process & Project Management SWEN 256 Software Process & Project Management What is quality? A definition of quality should emphasize three important points: 1. Software requirements are the foundation from which quality is measured.

More information

CSE - Annual Research Review. From Informal WinWin Agreements to Formalized Requirements

CSE - Annual Research Review. From Informal WinWin Agreements to Formalized Requirements CSE - Annual Research Review From Informal WinWin Agreements to Formalized Requirements Hasan Kitapci hkitapci@cse.usc.edu March 15, 2005 Introduction Overview EasyWinWin Requirements Negotiation and Requirements

More information

UNIT VIII SYSTEM METHODOLOGY 2014

UNIT VIII SYSTEM METHODOLOGY 2014 SYSTEM METHODOLOGY: UNIT VIII SYSTEM METHODOLOGY 2014 The need for a Systems Methodology was perceived in the second half of the 20th Century, to show how and why systems engineering worked and was so

More information

Introduction to adoption of lean canvas in software test architecture design

Introduction to adoption of lean canvas in software test architecture design Introduction to adoption of lean canvas in software test architecture design Padmaraj Nidagundi 1, Margarita Lukjanska 2 1 Riga Technical University, Kaļķu iela 1, Riga, Latvia. 2 Politecnico di Milano,

More information

IS 525 Chapter 2. Methodology Dr. Nesrine Zemirli

IS 525 Chapter 2. Methodology Dr. Nesrine Zemirli IS 525 Chapter 2 Methodology Dr. Nesrine Zemirli Assistant Professor. IS Department CCIS / King Saud University E-mail: Web: http://fac.ksu.edu.sa/nzemirli/home Chapter Topics Fundamental concepts and

More information

Understanding Requirements. Slides copyright 1996, 2001, 2005, 2009, 2014 by Roger S. Pressman. For non-profit educational use only

Understanding Requirements. Slides copyright 1996, 2001, 2005, 2009, 2014 by Roger S. Pressman. For non-profit educational use only Chapter 8 Understanding Requirements Slide Set to accompany Software Engineering: A Practitioner s Approach, 8/e by Roger S. Pressman and Bruce R. Maxim Slides copyright 1996, 2001, 2005, 2009, 2014 by

More information

Unit 5: Unified Software Development Process. 3C05: Unified Software Development Process USDP. USDP for your project. Iteration Workflows.

Unit 5: Unified Software Development Process. 3C05: Unified Software Development Process USDP. USDP for your project. Iteration Workflows. Unit 5: Unified Software Development Process 3C05: Unified Software Development Process Objectives: Introduce the main concepts of iterative and incremental development Discuss the main USDP phases 1 2

More information

Code Complete 2: A Decade of Advances in Software Construction Construx Software Builders, Inc. All Rights Reserved.

Code Complete 2: A Decade of Advances in Software Construction Construx Software Builders, Inc. All Rights Reserved. Code Complete 2: A Decade of Advances in Software Construction www.construx.com 2004 Construx Software Builders, Inc. All Rights Reserved. Construx Delivering Software Project Success Introduction History

More information

A FRAMEWORK FOR PERFORMING V&V WITHIN REUSE-BASED SOFTWARE ENGINEERING

A FRAMEWORK FOR PERFORMING V&V WITHIN REUSE-BASED SOFTWARE ENGINEERING A FRAMEWORK FOR PERFORMING V&V WITHIN REUSE-BASED SOFTWARE ENGINEERING Edward A. Addy eaddy@wvu.edu NASA/WVU Software Research Laboratory ABSTRACT Verification and validation (V&V) is performed during

More information

Arcade Game Maker Product Line Production Plan

Arcade Game Maker Product Line Production Plan Arcade Game Maker Product Line Production Plan ArcadeGame Team July 2003 Table of Contents 1 Overview 1 1.1 Identification 1 1.2 Document Map 1 1.3 Concepts 2 1.4 Readership 2 2 Strategic view of product

More information

Course Outline Department of Computing Science Faculty of Science

Course Outline Department of Computing Science Faculty of Science Course Outline Department of Computing Science Faculty of Science COMP 2920 3 Software Architecture & Design (3,1,0) Fall, 2015 Instructor: Phone/Voice Mail: Office: E-Mail: Office Hours: Calendar /Course

More information

About Software Engineering.

About Software Engineering. About Software Engineering pierre-alain.muller@uha.fr What is Software Engineering? Software Engineering Software development Engineering Let s s have a look at ICSE International Conference on Software

More information

Objectives. Designing, implementing, deploying and operating systems which include hardware, software and people

Objectives. Designing, implementing, deploying and operating systems which include hardware, software and people Chapter 2. Computer-based Systems Engineering Designing, implementing, deploying and operating s which include hardware, software and people Slide 1 Objectives To explain why software is affected by broader

More information

R&D PROJECT MANAGEMENT IS IT AGILE?

R&D PROJECT MANAGEMENT IS IT AGILE? Slide R&D PROJECT MANAGEMENT IS IT AGILE? Jesse Aronson, PMP, PE May, 208 Slide 2 Definitions: Agile and R&D Agile Project Management is an iterative process that focuses on customer value first, team

More information

Requirements Analysis aka Requirements Engineering. Requirements Elicitation Process

Requirements Analysis aka Requirements Engineering. Requirements Elicitation Process C870, Advanced Software Engineering, Requirements Analysis aka Requirements Engineering Defining the WHAT Requirements Elicitation Process Client Us System SRS 1 C870, Advanced Software Engineering, Requirements

More information

TECHNICAL AND OPERATIONAL NOTE ON CHANGE MANAGEMENT OF GAMBLING TECHNICAL SYSTEMS AND APPROVAL OF THE SUBSTANTIAL CHANGES TO CRITICAL COMPONENTS.

TECHNICAL AND OPERATIONAL NOTE ON CHANGE MANAGEMENT OF GAMBLING TECHNICAL SYSTEMS AND APPROVAL OF THE SUBSTANTIAL CHANGES TO CRITICAL COMPONENTS. TECHNICAL AND OPERATIONAL NOTE ON CHANGE MANAGEMENT OF GAMBLING TECHNICAL SYSTEMS AND APPROVAL OF THE SUBSTANTIAL CHANGES TO CRITICAL COMPONENTS. 1. Document objective This note presents a help guide for

More information

Chapter 8: Verification & Validation

Chapter 8: Verification & Validation 1 Chapter 8: Verification & Validation 2 Objectives To introduce software verification and validation and discuss the distinctions between them. V&V: Verification & Validation To describe the program inspection

More information

Towards an MDA-based development methodology 1

Towards an MDA-based development methodology 1 Towards an MDA-based development methodology 1 Anastasius Gavras 1, Mariano Belaunde 2, Luís Ferreira Pires 3, João Paulo A. Almeida 3 1 Eurescom GmbH, 2 France Télécom R&D, 3 University of Twente 1 gavras@eurescom.de,

More information

Systems Engineering Overview. Axel Claudio Alex Gonzalez

Systems Engineering Overview. Axel Claudio Alex Gonzalez Systems Engineering Overview Axel Claudio Alex Gonzalez Objectives Provide additional insights into Systems and into Systems Engineering Walkthrough the different phases of the product lifecycle Discuss

More information

Code Complete 2: Realities of Modern Software Construction

Code Complete 2: Realities of Modern Software Construction Code Complete 2: Realities of Modern Software Construction www.construx.com 2004-2005 2005 Construx Software Builders, Inc. All Rights Reserved. Construx Delivering Software Project Success R Really,Really

More information

Lean Enablers for Managing Engineering Programs

Lean Enablers for Managing Engineering Programs Lean Enablers for Managing Engineering Programs Presentation to the INCOSE Enchantment Chapter June 13 2012 Josef Oehmen http://lean.mit.edu 2012 Massachusetts Institute of Technology, Josef Oehmen, oehmen@mit.edu

More information

IBM Software Group. Mastering Requirements Management with Use Cases Module 2: Introduction to RMUC

IBM Software Group. Mastering Requirements Management with Use Cases Module 2: Introduction to RMUC IBM Software Group Mastering Requirements Management with Use Cases Module 2: Introduction to RMUC 1 Objectives Define key requirements management terms. Identify contributing factors to project success

More information

DreamCatcher Agile Studio: Product Brochure

DreamCatcher Agile Studio: Product Brochure DreamCatcher Agile Studio: Product Brochure Why build a requirements-centric Agile Suite? As we look at the value chain of the SDLC process, as shown in the figure below, the most value is created in the

More information

Methodology for Agent-Oriented Software

Methodology for Agent-Oriented Software ب.ظ 03:55 1 of 7 2006/10/27 Next: About this document... Methodology for Agent-Oriented Software Design Principal Investigator dr. Frank S. de Boer (frankb@cs.uu.nl) Summary The main research goal of this

More information

Non-Functional Requirements (NFRs) Definitions

Non-Functional Requirements (NFRs) Definitions Non-Functional Requirements (NFRs) Definitions Quality criteria; metrics Example NFRs Product-oriented Software Qualities Making quality criteria specific Catalogues of NFRs Example: Reliability Process-oriented

More information

Instrumentation and Control

Instrumentation and Control Program Description Instrumentation and Control Program Overview Instrumentation and control (I&C) and information systems impact nuclear power plant reliability, efficiency, and operations and maintenance

More information

Design and Technology Subject Outline Stage 1 and Stage 2

Design and Technology Subject Outline Stage 1 and Stage 2 Design and Technology 2019 Subject Outline Stage 1 and Stage 2 Published by the SACE Board of South Australia, 60 Greenhill Road, Wayville, South Australia 5034 Copyright SACE Board of South Australia

More information

Model-Based Testing. CSCE Lecture 18-03/29/2018

Model-Based Testing. CSCE Lecture 18-03/29/2018 Model-Based Testing CSCE 747 - Lecture 18-03/29/2018 Creating Requirements-Based Tests Write Testable Specifications Produce clear, detailed, and testable requirements. Identify Independently Testable

More information

Component Based Mechatronics Modelling Methodology

Component Based Mechatronics Modelling Methodology Component Based Mechatronics Modelling Methodology R.Sell, M.Tamre Department of Mechatronics, Tallinn Technical University, Tallinn, Estonia ABSTRACT There is long history of developing modelling systems

More information

Grundlagen des Software Engineering Fundamentals of Software Engineering

Grundlagen des Software Engineering Fundamentals of Software Engineering Software Engineering Research Group: Processes and Measurement Fachbereich Informatik TU Kaiserslautern Grundlagen des Software Engineering Fundamentals of Software Engineering Winter Term 2011/12 Prof.

More information

Course Introduction and Overview of Software Engineering. Richard N. Taylor Informatics 211 Fall 2007

Course Introduction and Overview of Software Engineering. Richard N. Taylor Informatics 211 Fall 2007 Course Introduction and Overview of Software Engineering Richard N. Taylor Informatics 211 Fall 2007 Software Engineering A discipline that deals with the building of software systems which are so large

More information

VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur 603203. DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING QUESTION BANK Degree & Branch : B.E C.S.E. Year & Semester : II / IV Section : CSE 1 & 2

More information

ACE3 Working Group Session, March 2, 2005

ACE3 Working Group Session, March 2, 2005 ACE3 Working Group Session, March 2, 2005 Intensive s The Synergy of Architecture, Life Cycle Models, and Reviews Dr. Peter Hantos The Aerospace Corporation 2003-2005. The Aerospace Corporation. All Rights

More information

1 Introduction and Roadmap: History and Challenges of Software Evolution

1 Introduction and Roadmap: History and Challenges of Software Evolution 1 Introduction and Roadmap: History and Challenges of Software Evolution Tom Mens University of Mons-Hainaut, Belgium Summary. The ability to evolve software rapidly and reliably is a major challenge for

More information

UML and Patterns.book Page 52 Thursday, September 16, :48 PM

UML and Patterns.book Page 52 Thursday, September 16, :48 PM UML and Patterns.book Page 52 Thursday, September 16, 2004 9:48 PM UML and Patterns.book Page 53 Thursday, September 16, 2004 9:48 PM Chapter 5 5 EVOLUTIONARY REQUIREMENTS Ours is a world where people

More information

Concurrent Increment Sequencing and Synchronization with Design Structure Matrices in Software- Intensive System Development

Concurrent Increment Sequencing and Synchronization with Design Structure Matrices in Software- Intensive System Development Concurrent Increment Sequencing and Synchronization with Design Structure Matrices in Software- Intensive System Development Dr. Peter Hantos The Aerospace Corporation NDIA Systems Engineering Conference

More information

Chapter 3 WORLDWIDE PATENTING ACTIVITY

Chapter 3 WORLDWIDE PATENTING ACTIVITY Chapter 3 WORLDWIDE PATENTING ACTIVITY Patent activity is recognized throughout the world as an indicator of innovation. This chapter examines worldwide patent activities in terms of patent applications

More information

TIES: An Engineering Design Methodology and System

TIES: An Engineering Design Methodology and System From: IAAI-90 Proceedings. Copyright 1990, AAAI (www.aaai.org). All rights reserved. TIES: An Engineering Design Methodology and System Lakshmi S. Vora, Robert E. Veres, Philip C. Jackson, and Philip Klahr

More information

Socio-cognitive Engineering

Socio-cognitive Engineering Socio-cognitive Engineering Mike Sharples Educational Technology Research Group University of Birmingham m.sharples@bham.ac.uk ABSTRACT Socio-cognitive engineering is a framework for the human-centred

More information

PROGRAM UNDERSTANDING TASK IN THE CONTEXT OF PSP

PROGRAM UNDERSTANDING TASK IN THE CONTEXT OF PSP PROGRAM UNDERSTANDING TASK IN THE CONTEXT OF PSP Vladan Jovanovic, Georgia Southern University, vladan@georgiasouthern.edu Richard Chambers, Georgia Southern University, rchamber@georgiasouthern.edu Steavn

More information

Introduction to Software Engineering

Introduction to Software Engineering Introduction to Software Engineering Somnuk Keretho, Assistant Professor Department of Computer Engineering Faculty of Engineering, Kasetsart University Email: sk@nontri.ku.ac.th URL: http://www.cpe.ku.ac.th/~sk

More information

OCEAN OBSERVATORIES INITIATIVE. Release 2 Schedule. OOI CI Release 2 Kickoff M a y 2,

OCEAN OBSERVATORIES INITIATIVE. Release 2 Schedule. OOI CI Release 2 Kickoff M a y 2, OCEAN OBSERVATORIES INITIATIVE Release 2 Schedule M a y 2, 2 0 11 1 Top-Down Through the Schedule Project Releases Anatomy of a Release 2 Phases in a Release Inception Phase in Detail: Iterations Milestones

More information

STUDY ON FIREWALL APPROACH FOR THE REGRESSION TESTING OF OBJECT-ORIENTED SOFTWARE

STUDY ON FIREWALL APPROACH FOR THE REGRESSION TESTING OF OBJECT-ORIENTED SOFTWARE STUDY ON FIREWALL APPROACH FOR THE REGRESSION TESTING OF OBJECT-ORIENTED SOFTWARE TAWDE SANTOSH SAHEBRAO DEPT. OF COMPUTER SCIENCE CMJ UNIVERSITY, SHILLONG, MEGHALAYA ABSTRACT Adherence to a defined process

More information

Domain Understanding and Requirements Elicitation

Domain Understanding and Requirements Elicitation and Requirements Elicitation CS/SE 3RA3 Ryszard Janicki Department of Computing and Software, McMaster University, Hamilton, Ontario, Canada Ryszard Janicki 1/24 Previous Lecture: The requirement engineering

More information

Gerald G. Boyd, Tom D. Anderson, David W. Geiser

Gerald G. Boyd, Tom D. Anderson, David W. Geiser THE ENVIRONMENTAL MANAGEMENT PROGRAM USES PERFORMANCE MEASURES FOR SCIENCE AND TECHNOLOGY TO: FOCUS INVESTMENTS ON ACHIEVING CLEANUP GOALS; IMPROVE THE MANAGEMENT OF SCIENCE AND TECHNOLOGY; AND, EVALUATE

More information

SAFETY CASE PATTERNS REUSING SUCCESSFUL ARGUMENTS. Tim Kelly, John McDermid

SAFETY CASE PATTERNS REUSING SUCCESSFUL ARGUMENTS. Tim Kelly, John McDermid SAFETY CASE PATTERNS REUSING SUCCESSFUL ARGUMENTS Tim Kelly, John McDermid Rolls-Royce Systems and Software Engineering University Technology Centre Department of Computer Science University of York Heslington

More information

Agile Non-Agile. Previously on Software Engineering

Agile Non-Agile. Previously on Software Engineering Previously on : Are we enough? Wydział Matematyki i Nauk Informacyjnych Politechnika Warszawska DSDM: Project overview Software Development Framework How to communicate? How to divide project into tasks?

More information

An introduction to software development. Dr. C. Constantinides, P.Eng. Computer Science and Software Engineering Concordia University

An introduction to software development. Dr. C. Constantinides, P.Eng. Computer Science and Software Engineering Concordia University An introduction to software development Dr. C. Constantinides, P.Eng. Computer Science and Software Engineering Concordia University What type of projects? Small-scale projects Can be built (normally)

More information

An Industrial Application of an Integrated UML and SDL Modeling Technique

An Industrial Application of an Integrated UML and SDL Modeling Technique An Industrial Application of an Integrated UML and SDL Modeling Technique Robert B. France 1, Maha Boughdadi 2, Robert Busser 2 1 Computer Science Department, Colorado State University, Fort Collins, Colorodo,

More information

Policy-Based RTL Design

Policy-Based RTL Design Policy-Based RTL Design Bhanu Kapoor and Bernard Murphy bkapoor@atrenta.com Atrenta, Inc., 2001 Gateway Pl. 440W San Jose, CA 95110 Abstract achieving the desired goals. We present a new methodology to

More information

CHAPTER 1 INTRODUCTION TO THE GUIDE

CHAPTER 1 INTRODUCTION TO THE GUIDE CHAPTER 1 INTRODUCTION TO THE GUIDE In spite of the millions of software professionals worldwide and the ubiquitous presence of software in our society, software engineering has not yet reached the status

More information

CC532 Collaborative System Design

CC532 Collaborative System Design CC532 Collaborative Design Part I: Fundamentals of s Engineering 5. s Thinking, s and Functional Analysis Views External View : showing the system s interaction with environment (users) 2 of 24 Inputs

More information

Testing in the Lifecycle

Testing in the Lifecycle Testing in the Lifecycle Conrad Hughes School of Informatics Slides thanks to Stuart Anderson 19 January 2010 Software Testing: Lecture 3 1 Software was difficult to get right in 1982 2 It was still difficult

More information

Scientific Certification

Scientific Certification Scientific Certification John Rushby Computer Science Laboratory SRI International Menlo Park, California, USA John Rushby, SR I Scientific Certification: 1 Does The Current Approach Work? Fuel emergency

More information

Software Development Lifecycle

Software Development Lifecycle Software Development Lifecycle The Power of Process Outline What is a software development lifecycle? Why do we need a lifecycle process? Lifecycle models and their tradeoffs o Code-and-fix o Waterfall

More information

Software processes, quality, and standards Static analysis

Software processes, quality, and standards Static analysis Software processes, quality, and standards Static analysis Jaak Tepandi, Jekaterina Tšukrejeva, Stanislav Vassiljev, Pille Haug Tallinn University of Technology Department of Software Science Moodle: Software

More information

What We Heard Report Inspection Modernization: The Case for Change Consultation from June 1 to July 31, 2012

What We Heard Report Inspection Modernization: The Case for Change Consultation from June 1 to July 31, 2012 What We Heard Report Inspection Modernization: The Case for Change Consultation from June 1 to July 31, 2012 What We Heard Report: The Case for Change 1 Report of What We Heard: The Case for Change Consultation

More information

Design and technology

Design and technology Design and technology Programme of study for key stage 3 and attainment target (This is an extract from The National Curriculum 2007) Crown copyright 2007 Qualifications and Curriculum Authority 2007 Curriculum

More information

WORKSHOP ON BASIC RESEARCH: POLICY RELEVANT DEFINITIONS AND MEASUREMENT ISSUES PAPER. Holmenkollen Park Hotel, Oslo, Norway October 2001

WORKSHOP ON BASIC RESEARCH: POLICY RELEVANT DEFINITIONS AND MEASUREMENT ISSUES PAPER. Holmenkollen Park Hotel, Oslo, Norway October 2001 WORKSHOP ON BASIC RESEARCH: POLICY RELEVANT DEFINITIONS AND MEASUREMENT ISSUES PAPER Holmenkollen Park Hotel, Oslo, Norway 29-30 October 2001 Background 1. In their conclusions to the CSTP (Committee for

More information

A New - Knot Model for Component Based Software Development

A New - Knot Model for Component Based Software Development www.ijcsi.org 480 A New - Knot Model for Component Based Software Development Rajender Singh Chhillar 1, Parveen Kajla 2 1 Department of Computer Science & Applications, Maharshi Dayanand University, Rohtak-124001,

More information

2/22/2006 Team #7: Pez Project: Empty Clip Members: Alan Witkowski, Steve Huff, Thos Swallow, Travis Cooper Document: VVP

2/22/2006 Team #7: Pez Project: Empty Clip Members: Alan Witkowski, Steve Huff, Thos Swallow, Travis Cooper Document: VVP 2/22/2006 Team #7: Pez Project: Empty Clip Members: Alan Witkowski, Steve Huff, Thos Swallow, Travis Cooper Document: VVP 1. Introduction and overview 1.1 Purpose of this Document The purpose of this document

More information

SDN Architecture 1.0 Overview. November, 2014

SDN Architecture 1.0 Overview. November, 2014 SDN Architecture 1.0 Overview November, 2014 ONF Document Type: TR ONF Document Name: TR_SDN ARCH Overview 1.1 11112014 Disclaimer THIS DOCUMENT IS PROVIDED AS IS WITH NO WARRANTIES WHATSOEVER, INCLUDING

More information

Model Based Systems Engineering (MBSE) Business Case Considerations An Enabler of Risk Reduction

Model Based Systems Engineering (MBSE) Business Case Considerations An Enabler of Risk Reduction Model Based Systems Engineering (MBSE) Business Case Considerations An Enabler of Risk Reduction Prepared for: National Defense Industrial Association (NDIA) 26 October 2011 Peter Lierni & Amar Zabarah

More information

Software Engineering: A Practitioner s Approach, 7/e. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman

Software Engineering: A Practitioner s Approach, 7/e. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman Chapter 9 Architectural Design Slide Set to accompany Software Engineering: A Practitioner s Approach, 7/e by Roger S. Pressman Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman For non-profit

More information

Software LEIC/LETI. Lecture 21

Software LEIC/LETI. Lecture 21 Software Engineering @ LEIC/LETI Lecture 21 Last Lecture Offline concurrency patterns (continuation) Object-relational behavioral patterns Session state patterns Presentation logic Services Domain logic

More information

GUIDE TO SPEAKING POINTS:

GUIDE TO SPEAKING POINTS: GUIDE TO SPEAKING POINTS: The following presentation includes a set of speaking points that directly follow the text in the slide. The deck and speaking points can be used in two ways. As a learning tool

More information

Software-Intensive Systems Producibility

Software-Intensive Systems Producibility Pittsburgh, PA 15213-3890 Software-Intensive Systems Producibility Grady Campbell Sponsored by the U.S. Department of Defense 2006 by Carnegie Mellon University SSTC 2006. - page 1 Producibility

More information

The Evolution Tree: A Maintenance-Oriented Software Development Model

The Evolution Tree: A Maintenance-Oriented Software Development Model The Evolution Tree: A Maintenance-Oriented Software Development Model Amir Tomer The Technion Israel Institute of Technology, Haifa, Israel Stephen R. Schach Vanderbilt University, Nashville, Tennessee,

More information

Modeling support systems for multi-modal design of physical environments

Modeling support systems for multi-modal design of physical environments FULL TITLE Modeling support systems for multi-modal design of physical environments AUTHOR Dirk A. Schwede dirk.schwede@deakin.edu.au Built Environment Research Group School of Architecture and Building

More information

Introduction to Software Engineering (Week 1 Session 2)

Introduction to Software Engineering (Week 1 Session 2) Introduction to Software Engineering (Week 1 Session 2) What is Software Engineering? Engineering approach to develop software. Building Construction Analogy. Systematic collection of past experience:

More information

in the New Zealand Curriculum

in the New Zealand Curriculum Technology in the New Zealand Curriculum We ve revised the Technology learning area to strengthen the positioning of digital technologies in the New Zealand Curriculum. The goal of this change is to ensure

More information

JOURNAL OF OBJECT TECHNOLOGY

JOURNAL OF OBJECT TECHNOLOGY JOURNAL OF OBJECT TECHNOLOGY Online at www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2003 Vol. 2, No. 4, July-August 2003 Specifying Good Requirements Donald Firesmith, Software

More information

The secret behind mechatronics

The secret behind mechatronics The secret behind mechatronics Why companies will want to be part of the revolution In the 18th century, steam and mechanization powered the first Industrial Revolution. At the turn of the 20th century,

More information

Chapter 7 Requirements Engineering

Chapter 7 Requirements Engineering Chapter 7 Requirements Engineering Moonzoo Kim CS Division of EECS Dept. KAIST moonzoo@cs.kaist.ac.kr http://pswlab.kaist.ac.kr/courses/cs550-07 Spring 2007 1 Requirements Engineering-I Inception ask a

More information

Interpretation von Software Qualitätsmetriken aus automatisierter statischer Analyse

Interpretation von Software Qualitätsmetriken aus automatisierter statischer Analyse Interpretation von Software Qualitätsmetriken aus automatisierter statischer Analyse Institut für Computertechnik ICT Institute of Computer Technology Andreas Gerstinger IIR Konferenz Software Testen &

More information

ISO ISO is the standard for procedures and methods on User Centered Design of interactive systems.

ISO ISO is the standard for procedures and methods on User Centered Design of interactive systems. ISO 13407 ISO 13407 is the standard for procedures and methods on User Centered Design of interactive systems. Phases Identify need for user-centered design Why we need to use this methods? Users can determine

More information

AOSE Agent-Oriented Software Engineering: A Review and Application Example TNE 2009/2010. António Castro

AOSE Agent-Oriented Software Engineering: A Review and Application Example TNE 2009/2010. António Castro AOSE Agent-Oriented Software Engineering: A Review and Application Example TNE 2009/2010 António Castro NIAD&R Distributed Artificial Intelligence and Robotics Group 1 Contents Part 1: Software Engineering

More information

EGS-CC. System Engineering Team. Commonality of Ground Systems. Executive Summary

EGS-CC. System Engineering Team. Commonality of Ground Systems. Executive Summary System Engineering Team Prepared: System Engineering Team Date: Approved: System Engineering Team Leader Date: Authorized: Steering Board Date: Restriction of Disclosure: The copyright of this document

More information

Model-Based Systems Engineering Methodologies. J. Bermejo Autonomous Systems Laboratory (ASLab)

Model-Based Systems Engineering Methodologies. J. Bermejo Autonomous Systems Laboratory (ASLab) Model-Based Systems Engineering Methodologies J. Bermejo Autonomous Systems Laboratory (ASLab) Contents Introduction Methodologies IBM Rational Telelogic Harmony SE (Harmony SE) IBM Rational Unified Process

More information

ARTES Competitiveness & Growth Full Proposal. Requirements for the Content of the Technical Proposal. Part 3B Product Development Plan

ARTES Competitiveness & Growth Full Proposal. Requirements for the Content of the Technical Proposal. Part 3B Product Development Plan ARTES Competitiveness & Growth Full Proposal Requirements for the Content of the Technical Proposal Part 3B Statement of Applicability and Proposal Submission Requirements Applicable Domain(s) Space Segment

More information

Service-Oriented Software Engineering - SOSE (Academic Year 2015/2016)

Service-Oriented Software Engineering - SOSE (Academic Year 2015/2016) Service-Oriented Software Engineering - SOSE (Academic Year 2015/2016) Teacher: Prof. Andrea D Ambrogio Objectives: provide methods and techniques to regard software production as the result of an engineering

More information

Refinement and Evolution Issues in Bridging Requirements and Architectures

Refinement and Evolution Issues in Bridging Requirements and Architectures Refinement and Evolution Issues between Requirements and Product Line s 1 Refinement and Evolution Issues in Bridging Requirements and s Alexander Egyed, Paul Gruenbacher, and Nenad Medvidovic University

More information

Roadmapping. Market Products Technology. People Process. time, ca 5 years

Roadmapping. Market Products Technology. People Process. time, ca 5 years - drives, requires supports, enables Customer objectives Application Functional Conceptual Realization Market Products Technology People Marketing Architect technology, process people manager time, ca

More information

SYSTEMS ENGINEERING MANAGEMENT IN DOD ACQUISITION

SYSTEMS ENGINEERING MANAGEMENT IN DOD ACQUISITION Chapter 2 Systems Engineering Management in DoD Acquisition CHAPTER 2 SYSTEMS ENGINEERING MANAGEMENT IN DOD ACQUISITION 2.1 INTRODUCTION The DoD acquisition process has its foundation in federal policy

More information

GOALS TO ASPECTS: DISCOVERING ASPECTS ORIENTED REQUIREMENTS

GOALS TO ASPECTS: DISCOVERING ASPECTS ORIENTED REQUIREMENTS GOALS TO ASPECTS: DISCOVERING ASPECTS ORIENTED REQUIREMENTS 1 A. SOUJANYA, 2 SIDDHARTHA GHOSH 1 M.Tech Student, Department of CSE, Keshav Memorial Institute of Technology(KMIT), Narayanaguda, Himayathnagar,

More information

THE APPLICATION OF SYSTEMS ENGINEERING ON THE BUILDING DESIGN PROCESS

THE APPLICATION OF SYSTEMS ENGINEERING ON THE BUILDING DESIGN PROCESS THE APPLICATION OF SYSTEMS ENGINEERING ON THE BUILDING DESIGN PROCESS A.Yahiaoui 1, G. Ulukavak Harputlugil 2, A.E.K Sahraoui 3 & J. Hensen 4 1 & 4 Center for Building & Systems TNO-TU/e, 5600 MB Eindhoven,

More information

M&S Requirements and VV&A: What s the Relationship?

M&S Requirements and VV&A: What s the Relationship? M&S Requirements and VV&A: What s the Relationship? Dr. James Elele - NAVAIR David Hall, Mark Davis, David Turner, Allie Farid, Dr. John Madry SURVICE Engineering Outline Verification, Validation and Accreditation

More information

Indiana K-12 Computer Science Standards

Indiana K-12 Computer Science Standards Indiana K-12 Computer Science Standards What is Computer Science? Computer science is the study of computers and algorithmic processes, including their principles, their hardware and software designs,

More information

Enabling Model-Based Design for DO-254 Compliance with MathWorks and Mentor Graphics Tools

Enabling Model-Based Design for DO-254 Compliance with MathWorks and Mentor Graphics Tools 1 White paper Enabling Model-Based Design for DO-254 Compliance with MathWorks and Mentor Graphics Tools The purpose of RTCA/DO-254 (referred to herein as DO-254 ) is to provide guidance for the development

More information

Federico Forti, Erdi Izgi, Varalika Rathore, Francesco Forti

Federico Forti, Erdi Izgi, Varalika Rathore, Francesco Forti Basic Information Project Name Supervisor Kung-fu Plants Jakub Gemrot Annotation Kung-fu plants is a game where you can create your characters, train them and fight against the other chemical plants which

More information