Manufacturing View. User View. Product View. User View Models. Product View Models
|
|
|
- Brenda Cross
- 10 years ago
- Views:
Transcription
1 Why SQA Activities Pay Off? Software Quality & Metrics Sources: 1. Roger S. Pressman, Software Engineering A Practitioner s Approach, 5 th Edition, ISBN , McGraw-Hill, 2001 (Chapters 8 & 19) 2. Measurement for Software Process Improvement by Barbara Kitchenham (Chapter 4) (out of print) SYSC Software Project Management: Software Quality 1 1 SYSC Software Project Management: Software Quality 2 2 McCall s Triangle of Quality Flexibility Testability PRODUCT REVISION Interoperability PRODUCT TRANSITION PRODUCT OPERATION Correctness Efficiency Integrity Quality Concepts general objective: reduce the variation between samples... but how does this apply to software? quality control: a series of inspections, reviews, tests quality assurance: analysis, auditing and reporting activities cost of quality appraisal costs failure costs external failure costs SYSC Software Project Management: Software Quality 3 3 SYSC Software Project Management: Software Quality 4 4 Software Quality Assurance SQA Process Definition & Standards Analysis & Reporting Measurement Formal Technical Reviews Test Planning & Review Software Quality Quality is a complex and multifaceted concept: 1. The transcendental view of philosophy which regards quality as something that can be recognised but not defined; 2. The user view, which is usually encapsulated in the phrase "fitness for purpose"; 3. The manufacturing view, which is usually encapsulated in the phrase "conance to specification"; 4. The product view, which relates quality to the inherent characteristics of the product; 5. The value for money view, which considers quality to be conditional on the amount a customer is willing to pay. SYSC Software Project Management: Software Quality 5 5 SYSC Software Project Management: Software Quality 6 6
2 User View The user view regards a quality product as one with the characteristics (functions and attributes) that meet its user's needs. The user view of quality is based on an evaluation of the product in the context of the task it is intended to per. It is the viewpoint that is inherent in reliability and perance modelling which are based on the concept of assessing product behaviour with respect to operational profiles. Manufacturing View This is the approach implicit in process standards such as ISO 9001 and the Capability Maturity Model. Advocates of this approach usually concentrate on conance to process rather than conance to specification. However, in the world of software, there is no guarantee that either conance to process standards such as ISO 9001, or achieving high maturity levels will deliver good products. The process standards are based on the principle of Documenting what you do and doing what you say. SYSC Software Project Management: Software Quality 7 7 SYSC Software Project Management: Software Quality 8 8 Product View The product view considers the inherent characteristics of the product. This view is frequently adopted by advocates of software metrics who assume that measuring and controlling internal product properties (i.e. internal quality indicators) will result in improved external product behaviour (i.e. quality in use). Assessing quality by measuring internal properties is attractive because it offers an objective and context independent view of quality. Software engineering researchers have developed models that attempt to link the product view to the user view. User View Models One important class of measures taking the user view of software are related to software reliability measurement. Software reliability concerns the frequency with which a software product fails when it is being used - a concept of understandable importance to a user. The relationship between reliability model and the user view of quality depends on either being able to observe the behaviour of software in the field, or simulate user behaviour by means of operational profiles. Operational profiles are also important for assessing software and system perance where we are interested in measuring characteristics such as job throughput, response times, central processing unit occupancy etc. For usability, we need to think in terms of task profiles rather than operational profiles. assessment can be measured in terms of times to per tasks, and task error rates. SYSC Software Project Management: Software Quality 9 9 SYSC Software Project Management: Software Quality Quality Characteristic Efficiency Product View Models Definition A set of attributes that bear on the existence of a set of functions and their specified properties. The functions are those that satisfy stated or implied needs. A set of attributes that bear on the capability of so ftw are to maintain its level of perance und er stated conditions for a stated period of time. A set of attributes that bear on the effort needed for use, and on the individual assessment of such use, by a stated or implied set of users. A set of attributes that bear on the relationship between the level of perance of the software and the amount of resources used, under stated conditions. A set of attributes that bear on the effort needed to make specified modifications. Note. Modifications may include corrections, improvements or adaptions of software to changes in the environment and in the requirements and functional specifications. A set of attributes that bear on the ability of software to be transferred from one environment to another. N ote. The environment may include organisational, hardware or software environment. SYSC Software Project Management: Software Quality Procedure Identify for each component which quality-carrying properties must be satisfied and which high-level quality attribute each property affects From the top down, you need to consider for each quality attribute which quality-carrying properties imply that attribute and which components possess those properties Categories of Properties 1. correctness properties (minimal generic requirements for correctness); 2. structural properties (low-level, intramodule design issues); 3. modularity properties (high-level, intermodule design issues); 4. descriptive properties (various s of specification/documentation). SYSC Software Project Management: Software Quality 12 12
3 Correctness Properties C1 Computable Result obeys standard Expressions theory of computation C2 Complete All elements of Objects structural satisfied Modules Statements C3 Assigned Variable given value before use. C4 Precise Adequate accuracy is preserved in calculations Subscript out of range Divide by zero Self assignment Module generating no output Unreachable code in a selection mechanism Use of undefined variable on right hand side of expression Use of single precision when double is required Structural Properties S1 Structured Single entry and exit Sequences Guards Expressions S2 Resolved Matched data and Sequences control structure Guards Efficiency S3 Homogeneous Only conjunctive invariants for loops S4 Effective No computational redundancy Expressions Loops Modules (recursive) Expression Statements Efficiency Exit from middle of loop Multiple returns from function Use of a single loop to process two-dimensional array Loop structure with noncohesive functionality Expression with unnecessary computation SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality Modularity Properties M1 Parameterized All inputs accessed via a Modules parameter list M2 Loosely coupled Data coupled Module calls M3 Encapsulated Uses no global variables Types M4 Cohesive Relationships between elements of an entity are maximized Sequences Module with no parameters Modules exhibiting other s of coupling (e.g. links based on use of common data). Use of variable in a module that has not been declared within the module s scope Loop with dispersed initialisation Descriptive Properties D1 Specified Preconditions and Post Objects conditions provided Modules Loops Sequences D2 Documented Comments associated with all blocks D3 Specification is ambiguous, inaccurate or inconsistent No pre- or postconditions Selfdescriptive Identifiers have meaningful names Objects Modules Loops Sequences Module calls Data structures Types Objects Modules Module calls Data structures More comments than required Documentation misleading or wrong Name is misleading, ambiguous or wrong Names bear no relation to function SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality Manufacturing View Defect Counts Defect counts are the number of known defects recorded against the product during its development and live use For comparison purposes it is important that defect counting is always applied to the same stages in the lifecycle. For more detailed analysis it is useful to categorise defects on the basis of the phase/activity that introduced the defect and the phase/activity in which the defect was detected. To measure product quality using defect counts, it is important to note that pre-release defect rates are a surrogate measure of quality. Post-release defect rates are the real measure of the quality of the delivered product. SYSC Software Project Management: Software Quality Manufacturing View Defect Counts II It is also important to ensure that defects are recorded at comparable stages post-release (e.g. up to six months after release). In order to compare the quality of different products, defect counts should be "normalised" by dividing by product size to give defect rates. In addition, post-release defect counts should be normalised with respect to the number of different product users and/or number of different computer installations which use the software product, and the amount of use by each installation/user SYSC Software Project Management: Software Quality 18 18
4 Manufacturing View Rework Effort In software development, rework costs are usually equated to staff effort spent correcting defects before and after release. It is important to define what is meant by rework during software development. It is best to exclude end-phase verification and validation, and include only rework of documents and code that have been ally signed-off. Debugging effort expended during integration and system testing should be included. To compare different products, rework effort is normalised by being calculated as a percentage of development effort. Manufacturing View Rework Effort II Only defect correction should count as re-work because it is a cost of non-conance. The ability to enhance software to include new facilities is not a cost, it is usually a benefit! It is important to separate pre- and post-release rework effort. Post-release rework effort is a measure of delivered quality. Pre-release rework effort is a measure of manufacturing efficiency. It is also a cost of non-conance, but if the effort can be attributed to specific phases/activities it can also be used to identify areas of maximum leverage for process improvement. SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality Software Quality Metrics Conance to software requirements is the foundation from which quality is measured. Specified standards define a set of development criteria that guide the manner in which software is engineered. Software quality is suspect when a software product cons to its explicitly stated requirements and fails to con to the customer's implicit requirements (e.g. ease of use). Metrics for specification Quality Davis and his colleagues propose a list of characteristics that can be used to assess the quality of the analysis model and the corresponding requirements specification: specificity (lack of ambiguity), completeness, correctness, understandability, verifiability, internal and external consistency, achievability, concision, traceability, modifiability, precision, and reusability. Although many of these characteristics appear to be qualitative in nature, Davis et al. suggest that each can be represented using one or more metrics. For example, we assume that there are n r requirements in a specification, such that n r = n f + n nf where n f is the number of functional requirements and n nf is the number of non-functional (e.g., perance) requirements. SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality The specificity (lack of ambiguity) of requirements can be determined: Q 1 = n ui /n r where n ui is the number of requirements for which all reviewers had identical interpretations. The closer the value of Q to 1, the lower is the ambiguity of the specification. The completeness of functional requirements can be determined by computing the ratio: Q 2 = n u /[n i x n s ] where n u is the number of unique function requirements, n i is the number of inputs (stimuli) defined or implied by the specification, and n s is the number of states specified. The Q 2 ratio measures the percentage of necessary functions that have been specified for a system. However, it does not address nonfunctional requirements. To incorporate these into an overall metric for completeness, we must consider the degree to which requirements have been validated: Q 3 = n c /[n c + n nv ] where n c is the number of requirements that have been validated as correct and n nv is the number of requirements that have not yet been validated. SYSC Software Project Management: Software Quality Architectural Design Metrics Architectural design metrics Structural complexity = g(fan-out) Data complexity = f(input & output variables, fan-out) System complexity = h(structural & data complexity) HK metric: architectural complexity as a function of fan-in and fan-out Morphology metrics: a function of the number of modules and the number of interfaces between modules SYSC Software Project Management: Software Quality 24 24
5 Component-Level Design Metrics Cohesion metrics: a function of data objects and the locus of their definition Coupling metrics: a function of input and output parameters, global variables, and modules called Complexity metrics: hundreds have been proposed (e.g., Cyclomatic complexity) We will now look at the cyclomatic complexity McCabe s Cyclomatic Number The premise is that complexity is related to the control flow of program. Graph theory uses a ula, C=e-n+1 to calculate cyclomatic number. McCabe uses the slightly modified ula: C=e-n+2p, where: e = Number of edges n = Number of nodes p = Number of strongly connected components (which is normally 1) SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality Example 1: Determine the cyclomatic number from the control flow graph shown below: Planar Graph A planar graph is a graph that can be drawn without lines crossing. Euler L ( ) proved that for planar graph that 2 = n e + r, where r = number of regions, e = number of edges, and n = number of nodes. A region is an area enclosed (or defined) by arcs, r = e n + 2. Therefore, the number of regions on a planar graph equals the cyclomatic number. Example: Label the regions in the control flow graph above - There are 8 nodes, so n = 8. There are 11 arcs, so e = 11. The cyclomatic number is C = = 5 As shown, there are 5 regions. Region I is the outside of the graph SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality Calculating the cyclomatic number from control graph is time-consuming. Constructing a control graph from a large program would be prohibitively time-consuming. McCabe found that the number of region is usually equal to one more than the number of decisions in a program, C = Π + 1, where Π is the number of decisions. In source code, an IF, a WHILE loop, or a FOR loop is considered one decision. A CASE statement or other multiple branch is counted as one less decision than the number of possible branches. Control flow graphs are required to have a distinct starting node and a distinct stopping node. If this is violated, the number of decisions will not be one less than the number of regions Example2 : Label the decisions in the control flow graph of example 1 above with lower case letters. As shown below, from node a, there are three arcs, so there must be two decisions, labeled a and b. From nodes c and f, there are two arcs and so one decision each. The other nodes have at most one exit and so no decisions. There are four decisions, so C = = 5 SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality 30 30
6 Quality assurance and standards Standards are the key to effective quality management. They may be international, national, organizational or project standards. Product standards define characteristics that all components should exhibit e.g. a common programming style. Process standards define how the software process should be enacted. Importance of standards Encapsulation of best practice- avoids repetition of past mistakes. They are a framework for quality assurance processes - they involve checking compliance to standards. They provide continuity - new staff can understand the organisation by understanding the standards that are used. SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality Product and process standards Product standards Design review Requirements document structure Method header at Java programming style Project plan at Change request Process standards Design review conduct Submission of documents to CM Version release process Project plan approval process Change control process Test recording process Problems with standards They may not be seen as relevant and up-to-date by software engineers. They often involve too much bureaucratic filling. If they are unsupported by software tools, tedious manual work is often involved to maintain the documentation associated with the standards. SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality Standards development Involve practitioners in development. Engineers should understand the rationale underlying a standard. Review standards and their usage regularly. Standards can quickly become outdated and this reduces their credibility amongst practitioners. Detailed standards should have associated tool support. Excessive clerical work is the most significant complaint against standards. Summary Quality is a complex concept that means different things to different individuals. It can be highly context dependent No simple measure of quality that will be accepted by everyone Define what aspect of quality you are interested in, and how you will measure it Define quality in a measurable way helps other people understand your viewpoint SYSC Software Project Management: Software Quality SYSC Software Project Management: Software Quality 36 36
Quality Management. What is quality? Managing the quality of the software process and products ISO 9000
Quality Management What is quality? Managing the quality of the software process and products Quality, simplistically, means that a product should meet its specification This is problematical for software
Quality Management. Objectives. Topics covered. Process and product quality Quality assurance and standards Quality planning Quality control
Quality Management Sommerville Chapter 27 Objectives To introduce the quality management process and key quality management activities To explain the role of standards in quality management To explain
Quality Management. Objectives
Quality Management Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 27 Slide 1 Objectives To introduce the quality management process and key quality management activities To explain the
Quality Management. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 27 Slide 1
Quality Management Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 27 Slide 1 Objectives To introduce the quality management process and key quality management activities To explain the
Chapter 24 - Quality Management. Lecture 1. Chapter 24 Quality management
Chapter 24 - Quality Management Lecture 1 1 Topics covered Software quality Software standards Reviews and inspections Software measurement and metrics 2 Software quality management Concerned with ensuring
Quality Management. Managing the quality of the software process and products
Quality Management Managing the quality of the software process and products Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 24 Slide 1 Objectives To introduce the quality management process
Learning outcomes. Systems Engineering. Software Quality Management. Product reflects Process. Lecture 5. Introduction to Software Quality Management
Systems Engineering Lecture 5 Introduction to Software Quality Management Dr. Joanna Bryson Dr. Leon Watts University of Bath Department of Computer Science Learning outcomes After attending this lecture
What do you think? Definitions of Quality
What do you think? What is your definition of Quality? Would you recognise good quality bad quality Does quality simple apply to a products or does it apply to services as well? Does any company epitomise
Software Engineering: Analysis and Design - CSE3308
CSE3308/DMS/2004/25 Monash University - School of Computer Science and Software Engineering Software Engineering: Analysis and Design - CSE3308 Software Quality CSE3308 - Software Engineering: Analysis
CSC 408F/CSC2105F Lecture Notes
CSC 408F/CSC2105F Lecture Notes These lecture notes are provided for the personal use of students taking CSC 408H/CSC 2105H in the Fall term 2004/2005 at the University of Toronto. Copying for purposes
Introduction to Software Engineering. 8. Software Quality
Introduction to Software Engineering 8. Software Quality Roadmap > What is quality? > Quality Attributes > Quality Assurance: Planning and Reviewing > Quality System and Standards 2 Sources > Software
Definitions. Software Metrics. Why Measure Software? Example Metrics. Software Engineering. Determine quality of the current product or process
Definitions Software Metrics Software Engineering Measure - quantitative indication of extent, amount, dimension, capacity, or size of some attribute of a product or process. Number of errors Metric -
Chap 1. Software Quality Management
Chap 1. Software Quality Management Part 1.1 Quality Assurance and Standards Part 1.2 Software Review and Inspection Part 1.3 Software Measurement and Metrics 1 Part 1.1 Quality Assurance and Standards
SOFTWARE QUALITY MODELS: A COMPARATIVE STUDY
SOFTWARE QUALITY MODELS: A COMPARATIVE STUDY Mrs. Manisha L. Waghmode Assistant Professor Bharati Vidyapeeth Deemed University, Institute of Management and Rural Development Administration, Sangli Dr.
BCS HIGHER EDUCATION QUALIFICATIONS Level 6 Professional Graduate Diploma in IT. March 2013 EXAMINERS REPORT. Software Engineering 2
BCS HIGHER EDUCATION QUALIFICATIONS Level 6 Professional Graduate Diploma in IT March 2013 EXAMINERS REPORT Software Engineering 2 General Comments The pass rate this year was significantly better than
Kunal Jamsutkar 1, Viki Patil 2, P. M. Chawan 3 (Department of Computer Science, VJTI, MUMBAI, INDIA)
Software Project Quality Management Kunal Jamsutkar 1, Viki Patil 2, P. M. Chawan 3 (Department of Computer Science, VJTI, MUMBAI, INDIA) ABSTRACT Quality Management is very important in Software Projects.
Software Engineering Compiled By: Roshani Ghimire Page 1
Unit 7: Metric for Process and Product 7.1 Software Measurement Measurement is the process by which numbers or symbols are assigned to the attributes of entities in the real world in such a way as to define
Quality Management & Process Improvement. Quality Management. Software quality management. What is quality?
Quality Management & Process Improvement Beatrice Åkerblom [email protected] Quality Management Software quality management! Concerned with ensuring that the required level of quality is achieved in a
Software Quality Assurance. Software Engineering: A Practitionerʼs Approach, 7/e by Roger S. Pressman
Chapter 16 Software Quality Assurance 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
Darshan Institute of Engineering & Technology Unit : 7
1) Explain quality control and also explain cost of quality. Quality Control Quality control involves the series of inspections, reviews, and tests used throughout the software process to ensure each work
Introducing Formal Methods. Software Engineering and Formal Methods
Introducing Formal Methods Formal Methods for Software Specification and Analysis: An Overview 1 Software Engineering and Formal Methods Every Software engineering methodology is based on a recommended
Formal Software Testing. Terri Grenda, CSTE IV&V Testing Solutions, LLC www.ivvts.com
Formal Software Testing Terri Grenda, CSTE IV&V Testing Solutions, LLC www.ivvts.com Scope of Testing Find defects early Remove defects prior to production Identify Risks Unbiased opinion When Should Testing
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
HOW TO CREATE USEFUL SOFTWARE PROCESS DOCUMENTATION ABSTRACT
HOW TO CREATE USEFUL SOFTWARE PROCESS DOCUMENTATION Linda Westfall The Westfall Team [email protected] 3000 Custer Road, Suite 270, PMB 383 Plano, TX 75075 ABSTRACT Whether our organization is
Software Quality Management
Software Lecture 9 Software Engineering CUGS Spring 2011 Kristian Sandahl Department of Computer and Information Science Linköping University, Sweden A Software Life-cycle Model Which part will we talk
Requirements engineering
Learning Unit 2 Requirements engineering Contents Introduction............................................... 21 2.1 Important concepts........................................ 21 2.1.1 Stakeholders and
Comparative Analysis of Different Software Quality Models
Comparative Analysis of Different Software Quality Models Ranbireshwar S. Jamwal, Deepshikha Jamwal & Devanand Padha [email protected], [email protected],[email protected] Lecturer, Research
Fundamentals of Measurements
Objective Software Project Measurements Slide 1 Fundamentals of Measurements Educational Objective: To review the fundamentals of software measurement, to illustrate that measurement plays a central role
Software Engineering 9.1. Quality Control
Software Engineering 9.1. 9. Introduction When, Why and What? Product & Process Attributes Internal & External Attributes Typical Quality Attributes Overview Definitions Quality Assurance Assumption Quality
Software Metrics. Lord Kelvin, a physicist. George Miller, a psychologist
Software Metrics 1. Lord Kelvin, a physicist 2. George Miller, a psychologist Software Metrics Product vs. process Most metrics are indirect: No way to measure property directly or Final product does not
Software Test Plan (STP) Template
(STP) Template Items that are intended to stay in as part of your document are in bold; explanatory comments are in italic text. Plain text is used where you might insert wording about your project. This
Software Quality. Software Quality Assurance and Software Reuse. Three Important Points. Quality Factors
Software Quality Software Quality Assurance and Software Reuse Peter Lo Conformance to explicitly-stated functional and performance requirements, explicitly-documented development standards, and implicit
Software Testing. Quality & Testing. Software Testing
Software Testing Software Testing Error: mistake made by the programmer/developer Fault: a incorrect piece of code/document (i.e., bug) Failure: result of a fault Goal of software testing: Cause failures
Testing Metrics. Introduction
Introduction Why Measure? What to Measure? It is often said that if something cannot be measured, it cannot be managed or improved. There is immense value in measurement, but you should always make sure
Peer Review Process Description
Peer Review Process Description Version 1.0 draft1 Table of Contents 1. Overview... 1 2. Work Aids... 1 3. Risk Assessment Guidance... 1 4. Participants... 2 5. Inspection
Use Cases. Massimo Felici. Massimo Felici Use Cases c 2004 2011
Use Cases Massimo Felici Use Cases 1 Support requirements engineering activities and the requirement process Capture what a system is supposed to do, i.e., systems functional requirements Describe sequences
Unit 11: Software Metrics
Unit 11: Software Metrics Objective Ð To describe the current state-of-the-art in the measurement of software products and process. Why Measure? "When you can measure what you are speaking about and express
Software Metrics & Software Metrology. Alain Abran. Chapter 4 Quantification and Measurement are Not the Same!
Software Metrics & Software Metrology Alain Abran Chapter 4 Quantification and Measurement are Not the Same! 1 Agenda This chapter covers: The difference between a number & an analysis model. The Measurement
How To Improve Software Quality
Software Qualities Quality Assurance Maintainer Go Documentation Readable Ce Go Design Functionality Ease of use Ease of learning User Reliability Correctness Efficiency Low Cost Portability Increased
copyright 1996, 2001, 2005 R.S. Pressman & Associates, Inc.
Software Engineering: A Practitioner s Approach, 6/e Chapter 26 Quality Management copyright 1996, 2001, 2005 R.S. Pressman & Associates, Inc. For University Use Only May be reproduced ONLY for student
The «SQALE» Analysis Model An analysis model compliant with the representation condition for assessing the Quality of Software Source Code
The «SQALE» Analysis Model An analysis model compliant with the representation condition for assessing the Quality of Software Source Code Jean-Louis Letouzey DNV IT Global Services Arcueil, France [email protected]
Evaluation of the Iceland State Financial and Human Resource System REPORT OF THE INDIVIDUAL EVALUATOR. Annex 2 SYSTEM AND SOFTWARE QUALITY
Evaluation of the Iceland State Financial and Human Resource System REPORT OF THE INDIVIDUAL EVALUATOR Annex 2 SYSTEM AND SOFTWARE QUALITY This paper lists the properties used in the two main models in
Description of Services for A Quality Assurance Engineer for SQA Assignment for eservices Development Projects ICTA/CON/IC/P5/411B
Description of Services for A Quality Assurance Engineer for SQA Assignment for eservices Development Projects ICTA/CON/IC/P5/411B 1. Introduction The Information and Communication Technology Agency of
Software Quality Assurance
Software Quality Assurance Software Engineering 9 1 McCall s Triangle of Quality Maintainability Flexibility Testability PRODUCT REVISION Portability Reusability Interoperability PRODUCT TRANSITION PRODUCT
Peer Review Process Description
Peer Review Process Description Version 1.0 draft1 Table of Contents 1.Overview...1 2.Work Aids...1 3.Risk Assessment Guidance...1 4.Participants...2 5.Inspection Procedure...4
Software testing. Objectives
Software testing cmsc435-1 Objectives To discuss the distinctions between validation testing and defect testing To describe the principles of system and component testing To describe strategies for generating
Empirical Software Engineering Introduction & Basic Concepts
Empirical Software Engineering Introduction & Basic Concepts Dietmar Winkler Vienna University of Technology Institute of Software Technology and Interactive Systems [email protected]
CSTE Mock Test - Part I - Questions Along with Answers
Note: This material is for Evaluators reference only. Caters to answers of CSTE Mock Test - Part I paper. 1. A branch is (Ans: d) a. An unconditional transfer of control from any statement to any other
International Journal of Advance Research in Computer Science and Management Studies
Volume 2, Issue 12, December 2014 ISSN: 2321 7782 (Online) International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online
Chapter 17 Software Testing Strategies 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
Measurement Information Model
mcgarry02.qxd 9/7/01 1:27 PM Page 13 2 Information Model This chapter describes one of the fundamental measurement concepts of Practical Software, the Information Model. The Information Model provides
Software Testing & Analysis (F22ST3): Static Analysis Techniques 2. Andrew Ireland
Software Testing & Analysis (F22ST3) Static Analysis Techniques Andrew Ireland School of Mathematical and Computer Science Heriot-Watt University Edinburgh Software Testing & Analysis (F22ST3): Static
Meeting DO-178B Software Verification Guidelines with Coverity Integrity Center
Meeting DO-178B Software Verification Guidelines with Coverity Integrity Center May, 2009 Thomas Schultz Director of Product Strategy, Coverity, Inc. Executive Summary Development organizations that create
Keywords: SQA,Black Box Testing( BBT), White Box testing(wbt).
Volume 3, Issue 10, October 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Enhancing Software
Unit 10: Software Quality
Unit 10: Software Quality Objective Ð To introduce software quality management and assurance with particular reference to the requirements of ISO 9000 and associated standards. Ð To introduce QFD, a technique
How To Understand Software Quality
Chapter 24 - Quality Management Letizia Jaccheri 1 Topics covered Software quality (project, product, organization) Software standards (product, process) Reviews and inspections (code, progress, standards)
VAIL-Plant Asset Integrity Management System. Software Development Process
VAIL-Plant Asset Integrity Management System Software Development Process Document Number: VAIL/SDP/2008/008 Engineering For a Safer World P u b l i c Approved by : Ijaz Ul Karim Rao Revision: 0 Page:2-of-15
CSTE Mock Test - Part III Questions Along with Answers
Note: This material is for Evaluators reference only. Caters to answers of CSTE Mock Test - Part III paper. 1. Independence is important in testing is mostly due to the fact that (Ans: C) a. Developers
How To Write Software
Overview of Software Engineering Principles 1 Software Engineering in a Nutshell Development of software systems whose size/ complexity warrants a team or teams of engineers multi-person construction of
Standard Glossary of Terms Used in Software Testing. Version 3.01
Standard Glossary of Terms Used in Software Testing Version 3.01 Terms Used in the Advanced Level - Technical Test Analyst Syllabus International Software Testing Qualifications Board Copyright International
MTAT.03.243 Software Engineering Management
MTAT.03.243 Software Engineering Management Lecture 17: Other SPI Frameworks and QM Systems Dietmar Pfahl Spring 2014 email: [email protected] Structure of Lecture 17 Other SPI Frameworks People CMM
TPI a model for Test Process Improvement
TPI a model for Test Process Improvement Jari Andersin Helsinki, 5th October 2004 Seminar on Quality Models for Software Engineering Department of Computer Science UNIVERSITY OF HELSINKI ii TPI a model
Requirements engineering and quality attributes
Open Learning Universiteit Unit 2 Learning Unit 2 Requirements engineering and quality attributes Contents Introduction............................................... 21 2.1 Important concepts........................................
ISO/IEC 9126-1 Software Product Quality Model
Why do current systems fail? Standish Group found that 51% of projects failed 31% were partially successful Main causes were poor user requirements: 13.1% Incomplete requirements 12.4% Lack of user involvement
IT3203 Fundamentals of Software Engineering (Compulsory) BIT 2 nd YEAR SEMESTER 3
Fundamentals of Software Engineering (Compulsory) BIT 2 nd YEAR SEMESTER 3 INTRODUCTION This course is designed to provide the students with the basic competencies required to identify requirements, document
Software Requirements Specification
1 of 7 17.04.98 13:32 Software Requirements Specification The sub-sections : 1. What is a Software Requirements Specification 2. Why is a Software Requirement Specification Required 3. What is Contained
An Introduction to. Metrics. used during. Software Development
An Introduction to Metrics used during Software Development Life Cycle www.softwaretestinggenius.com Page 1 of 10 Define the Metric Objectives You can t control what you can t measure. This is a quote
SOFTWARE DEVELOPMENT STANDARD FOR SPACECRAFT
SOFTWARE DEVELOPMENT STANDARD FOR SPACECRAFT Mar 31, 2014 Japan Aerospace Exploration Agency This is an English translation of JERG-2-610. Whenever there is anything ambiguous in this document, the original
Your Software Quality is Our Business. INDEPENDENT VERIFICATION AND VALIDATION (IV&V) WHITE PAPER Prepared by Adnet, Inc.
INDEPENDENT VERIFICATION AND VALIDATION (IV&V) WHITE PAPER Prepared by Adnet, Inc. February 2013 1 Executive Summary Adnet is pleased to provide this white paper, describing our approach to performing
Quality Management. Lecture 12 Software quality management
Quality Management Lecture 12 Software quality management doc.dr.sc. Marko Jurčević prof.dr.sc. Roman Malarić University of Zagreb Faculty of Electrical Engineering and Computing Department of Fundamentals
Volume I, Section 4 Table of Contents
Volume I, Section 4 Table of Contents 4 Software Standards...4-1 4.1 Scope...4-1 4.1.1 Software Sources...4-2 4.1.2 Location and Control of Software and Hardware on Which it Operates...4-2 4.1.3 Exclusions...4-3
Database design 1 The Database Design Process: Before you build the tables and other objects that will make up your system, it is important to take time to design it. A good design is the keystone to creating
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
How To Write Software
1 Medical Device Software - Software Life Cycle Processes IEC 62304 2 Credits John F. Murray Software Compliance Expert U.S. Food and Drug Administration Marcie R. Williams Medical Device Fellow Ph.D.
1.0 INTRODUCTION 1.1 Overview
Guidance document for the writing of standard operating procedures (Taken from United States Environmental Protection Agency Guidance for Preparing Standard Operating Procedures (SOPs) EPA QA/G- 6 [EPA/600/B-
EVALUATING METRICS AT CLASS AND METHOD LEVEL FOR JAVA PROGRAMS USING KNOWLEDGE BASED SYSTEMS
EVALUATING METRICS AT CLASS AND METHOD LEVEL FOR JAVA PROGRAMS USING KNOWLEDGE BASED SYSTEMS Umamaheswari E. 1, N. Bhalaji 2 and D. K. Ghosh 3 1 SCSE, VIT Chennai Campus, Chennai, India 2 SSN College of
Engineering Process Software Qualities Software Architectural Design
Engineering Process We need to understand the steps that take us from an idea to a product. What do we do? In what order do we do it? How do we know when we re finished each step? Production process Typical
Implementation of a Quality Management System for Aeronautical Information Services -1-
Implementation of a Quality Management System for Aeronautical Information Services -1- Implementation of a Quality Management System for Aeronautical Information Services Chapter IV, Quality Management
Noorul Islam College of Engineering M. Sc. Software Engineering (5 yrs) IX Semester XCS592- Software Project Management
Noorul Islam College of Engineering M. Sc. Software Engineering (5 yrs) IX Semester XCS592- Software Project Management 8. What is the principle of prototype model? A prototype is built to quickly demonstrate
Process Improvement. Objectives
Process Improvement Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 28 Slide 1 Objectives To explain the principles of software process improvement To explain how software process factors
Comparison ISO/TS 16949 (1999) to VDA 6.1 (1998)
1 APPLICABILITY VDA 6.1: Section: 3.1; 7 new: In addition to the applicability for supplier sites for production, services and their subcontractors for: products and production materials, or services like
Software Quality Management II
Software II Lecture 13 Software Engineering CUGS Kristian Sandahl Department of Computer and Information Science Linköping University, Sweden [email protected] A Software Life-cycle Model Which
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
Organizational Requirements Engineering
Chapter 9, Non-functional Requirements Organizational Requirements Engineering Prof. Dr. Armin B. Cremers Sascha Alda Armin B. Cremers, Sascha Alda Organizational Requirements Engineering 1 Overview of
Baseline Code Analysis Using McCabe IQ
White Paper Table of Contents What is Baseline Code Analysis?.....2 Importance of Baseline Code Analysis...2 The Objectives of Baseline Code Analysis...4 Best Practices for Baseline Code Analysis...4 Challenges
The Role of Information Technology Studies in Software Product Quality Improvement
The Role of Information Technology Studies in Software Product Quality Improvement RUDITE CEVERE, Dr.sc.comp., Professor Faculty of Information Technologies SANDRA SPROGE, Dr.sc.ing., Head of Department
International Journal of Computer Science Trends and Technology (IJCST) Volume 3 Issue 4, Jul-Aug 2015
RESEARCH ARTICLE Software Quality Management Measured Based Code Assessments Salman Zakariya [1], Mohammed Belal [2] Department of Computer Science Helwan university, Cairo, Egypt [1] & [2] OPEN ACCESS
Software Requirements Metrics
Software Requirements Metrics Fairly primitive and predictive power limited. Function Points Count number of inputs and output, user interactions, external interfaces, files used. Assess each for complexity
Standard Glossary of Terms Used in Software Testing. Version 3.01
Standard Glossary of Terms Used in Software Testing Version 3.01 Terms Used in the Advanced Level - Test Manager Syllabus International Software Testing Qualifications Board Copyright International Software
IT3205: Fundamentals of Software Engineering (Compulsory)
INTRODUCTION : Fundamentals of Software Engineering (Compulsory) This course is designed to provide the students with the basic competencies required to identify requirements, document the system design
Moving from ISO9000 to the Higher Levels of the Capability Maturity Model (CMM)
Moving from ISO9000 to the Higher Levels of the Capability Maturity Model (CMM) Pankaj Jalote 1 Infosys Technologies Ltd. Bangalore 561 229 Fax: +91-512-590725/590413 [email protected], [email protected]
Software Project Audit Process
Software Project Audit Process Version 1.2 Information and Communication Technology Agency of Sri Lanka July 2013 Copyright 2011 ICTA Software Project Audit Process-v-1.2 Revision History Date Version
Compliance ow - managing the compliance of dynamic and complex processes
Loughborough University Institutional Repository Compliance ow - managing the compliance of dynamic and complex processes This item was submitted to Loughborough University's Institutional Repository by
Certification criteria for. Internal QMS Auditor Training Course
Certification criteria for Internal QMS Auditor Training Course CONTENTS 1. INTRODUCTION 2. LEARNING OBJECTIVES 3. ENABLING OBJECTIVES KNOWLEDGE & SKILLS 4. TRAINING METHODS 5. COURSE CONTENT 6. COURSE
