AN EMPIRICAL REVIEW ON FACTORS AFFECTING REUSABILITY OF PROGRAMS IN SOFTWARE ENGINEERING
|
|
|
- Hester Gwendoline Page
- 9 years ago
- Views:
Transcription
1 AN EMPIRICAL REVIEW ON FACTORS AFFECTING REUSABILITY OF PROGRAMS IN SOFTWARE ENGINEERING Neha Sadana, Surender Dhaiya, Manjot Singh Ahuja Computer Science and Engineering Department Shivalik Institute of Engineering and Technology, Aliyaspur (Ambala), Haryana, India Abstract Software engineering deals with the development of software systems and to reduce the cost and improve the development process. We make reuse of software in order to reduce effort, time and cost and thus it increases the productivity and quality of software programs. To check whether software components can be reused or not we measure reusability of the components. Reusability depends on number of factors. Using some of these factors reusability metric is formed to measure software component reusability. But software metric research area lacks standardization and this discourages metric usage and real applicability of these metrics in development and maintenance phase. This paper presents a survey on factors affecting reusability and reusability metrics to guide our researchers and developers for quality software development. Keywords: Metrics, Complexity, Objectoriented, Software quality; Software Reuse and Software Metrics. 1 Introduction As the size of the software system increased, new approaches of software development came into picture. These approaches include the object-oriented encoding, component-based development, aspect-based programming. But there is a need to reduce the effort, time and cost to build software so that productivity and quality of software programs can increase. Software reuse has been a cherished goal for software engineers and is viewed as a means to reduce development costs and to improve quality. Software reuse is use of existing software to build new software. Reusable software can be codes, templates, functions, procedures, objects, routines or framework including various documents. Initial investment is required to start the reuse process, but when reuse process is matured in the new software system it decreases the implementation time. Today, most of the applications are developed by using some existing libraries, codes, open sources etc. Software components are ready to use programming codes or controls that excel the code development. A software system is the collection of different software modules or the components that are integrated as the whole system. With the inclusion of software components the complete life cycle of the software is changed. Reusability is the extent to which a segment of source code can be used again to add new functions with new slight or no modification. To measure reusability, we need software metric. Software metrics is concerned with measurements of reusability of software components. Software metric can be broadly classified into three categories- Product Metric- It is used in documentation, design, performance, cyclomatic complexity for testability, coupling factor for maintainability.
2 Process Metric- Its emphases are on software development process such as development time, methodology used and quality assurance techniques. Resource Metric- Its emphasis are on human, hardware, software resource such as developers skill level, hardware reliability, software component quality. 1.1 Components Based Development As the world of software development has evolved rapidly in the last decade, Component-Based Development has evolved from previous design and programming paradigms. This approach advocates the acquisition, adaptation, and integration of reusable software components, including commercial-offthe-shelf (COTS) products, to rapidly develop and deploy complex software systems with minimum engineering effort and reduced cost [1]. According to the Software Engineering Institute (SEI), the use of commercial off-the-shelf (COTS) products as elements of larger systems is becoming increasingly commonplace, due to shrinking budgets, accelerating rates of COTS enhancement, and expanding system requirements. COTS components also provide greater reliability as compared to custom-made components since they are refined by substantial fieldtesting. Voas [2] presented a summary of the advantages that can be gained by developing a system using COTS components: Functionality is instantly accessible to the developer. Components may be less costly than those developed in-house. The component vendor may be an expert in the particular area of the component Functionality. As COTS are used for reuse of components in software, now, we need to determine the degree of reusability of the component. For this many reusability metrics are proposed till date, out of these metrics some are used for object oriented and some are used for procedure oriented. In this work we are trying to overcome these problems by proposing metric for both procedure and object oriented approaches. 2. Factors affecting Reusability of components After studying number of papers and documents we found that following are the factors which affect the reusability of components: Adaptability Availability Complexity Completeness Correctness Cohesion Coupling Factors affecting Reusability Measurement Documentation Efficiency Expandability Generality Maintainability Modularity Portability Price Quality Reuse Reliability Testability Fig1: Factors affecting Reusability Measurement Availability The availability of a software component can be determined that how easy and fast it is to retrieve. For measuring the availability of a component a generic, qualitative and subjective, metric can be used. The value obtained by the metric is placed on an ordinal scale and normalized to fit in the overall calculation of reusability of that component. Documentation - A good documentation can make the software component more
3 reliable since it makes it easier to understand. Furthermore, it should contain the legal terms and conditions and thus make clear if it is licensed for reuse in the context of the developer or if any legal issues may arise. It can be determined by four different attributes: amount, quality, completeness of documentation and availability of appropriate legal terms and conditions. Complexity - The complexity of a software component determines how usable it is (i.e., easy to understand and to maintain) and how easy it is to adapt the software component in the new context of use. The complexity of a component can be measured by the size of the component, no. of loops, nested computation etc. If the Complexity of the component increases, more difficult is to reuse that component. Complexity metric depends on classes, methods and parameters of the component. Quality - The quality of a component describes how good it fulfills requirements and also how error-free and bug-free it is. If a component is error-free and bug-free, it can be used again. Quality of a component can be accessed via four attributes: the number of bugs, the number of tests performed, availability of test cases, and an independent rating and certification. Maintainability - The maintainability of a software component directly determines how easy it is to adjust the component to a new context. A component must be able to fit its behavior according to changes in the environment or in parts of system to be used again. Price - The price of the software component determines how expensive it is to reuse. A generic, objective and quantitative metric can be evaluated, expressed through a predefined currency. Completeness - The degree to which the component implements all required capabilities. Correctness - The ability of a component to produce specified outputs when given specified inputs, and the extent to which they match or satisfy the requirements. Efficiency - The degree to which a component performs its designated functions with minimum consumption of resources and less delay in execution time. Higher the efficiency of component higher will be the reusability of components. Generality - The degree to which a system or component performs a broad range of functions. Modularity The degree to which a system or computer program is composed of discrete components (modules) such that a change to one component has minimal impact on other components. Each component contains everything necessary to execute one aspect of desired function. High modularity leads to high reusability. Portability- The extent to which a module originally developed on one computer or operating system can be used on another computer or operating system. If a component is portable, it can run on different platforms which increase the probability of component to be reusable. Reliability - The ability of a component to perform its required functions under stated conditions for a specified period of time. Cohesion - The degree to which the functions or processing elements within a module are related or bound together. Cohesion increases if the methods in the module perform same function. High cohesion leads to high reusability of component. Coupling - The degree that modules are dependent upon each other in a computer program. Tight coupling between components reduces reusability of components. In tightly coupled modules, a change in one module forces a change in other modules which leads to extra effort and time to assemble these components.
4 Hence, these components cannot be used as reusable components. Expandability - The extent to which a component allows new capabilities to be added and existing capabilities to be easily tailored to user needs. It measures the level of effort and cost required to implement the system with new capabilities. If the component is easily expandable, it can be easily reusable. Testability - The ability to evaluate conformance with requirements. The testability of the component is critical when reusing the software. A well-defined set of test cases aids in quickly assessing the components use in a new environment. The testability of a component is defined in part by its complexity, as well as its size. After studying various factors affecting reusability, it can be concluded that components must be well defined and understandable by the software engineers and encapsulate as much implementation detail as possible. Fault density, coderelated problem counts, defect density, and efficiency are some of the metrics used for assessing existing components for reusability. The longer a component has been in actual use; higher will be the confidence of the component's correctness. Cohesion and Coupling are the most important factors to measure the reusability of component. Cohesion and Coupling are complementary to each other. High Cohesion leads to Low Coupling between modules, hence increases reusability. To measure the reusability of component we need to calculate the reusability metric. 4. Related Work Reusability is the measure of extent upto which we can make reuse of component. For the sake of practicality, reusability metric can be separated into two categories: one for white-box, which allow to look into the code of the components and one for black-box (where merely interface and documentation of a component are available) reusability. This separation helps to distinguish the different nature of metrics for these two paradigms. Prieto-Diaz and Freeman checked whitebox reuse and identified some program attributes for evaluating reusability [3]. Attributes used are: Program Size, Program Structure, Program credentials, Programming Language, and Reuse Experience. Caldiera and Basili [4] in 1991 defined three main attributes for assessing the reusability of components reuse costs, functional usefulness and quality of components. Seven years later, Barnard [5] suggested a composite metric for reusability of objectoriented software, which was derived from two empirical experiments. As foundation, again a variety of readily available software metrics have been used. Based on the experiments, those metrics that were related best to reusability have been selected. [5] Focused on the Simplicity, Generosity and Understandability of class interfaces, methods and attributes. Around the same time, Mao et al. [6] investigated the effects of inheritance, coupling and complexity on the reusability of classes in object-oriented software. Two years later, Lee and Chang [7] proposed another set of metrics for measuring the reusability and maintainability of objectoriented software. In 2001, Cho et al. [8] suggested metrics for component complexity, customizability, reusability and reuse. Component Reusability is determined by the functionality that the software components provide for their domain: it is the ratio between the number of interface methods in the component that provide common functions in the domain, and the total number of interface methods in the component. The more the common functions a component provides, more its
5 reusability is considered. Also in 2001 Etzkorn et al. [9] have published a model capturing reusability of object-oriented legacy software. They suggested a comprehensive metric suite covering different aspects of the reusability of individual classes. It is defined as the sum of metrics for Modularity, Interface Size, Documentation and Complexity of a class, each equally weighted. Four years later, Bhattacharya and Perry [10] suggested reusability metrics that measure how well a component fits in a predefined architectural context. In 2008, Gui and Scott [11] suggested revised formulas for established coupling and cohesion metrics in order to measure the reusability of Java components. Gill and Sikka [12] proposed five new metrics for better assessing reuse and reusability in object-oriented software development. The metrics are Breadth of Inheritance Tree, Method Reuse per Inheritance Relation, Attribute Reuse per Inheritance Relation, Generality of Class and Reuse Probability. Reusability of a component can be measured by Coupling or Cohesion metrics. Number of authors has proposed metrics for coupling and cohesion. Coupling metrics Page Jones [13] introduced the concept of tramp coupling, where data may flow between many intermediate modules from where data is defined to where data is used. This metric measures the coupling among many modules instead of just two modules. Classification produced by Myers [14] is used by Fenton and Melton [15].They proposed the following metric as a measure of coupling between two components x and y: C(x,y) = i +n/(n+1) Dhama [16] proposed a coupling metric that measures the coupling of an individual component C, which is equal to: C= 1/ (i1 + q612+u1+q2u2+g1+q8g2+w+r) Cohesion metrics Cohesion metrics measure how well the methods of a class are related to each other. A cohesive class performs one function. LCOM1 was introduced by Chidamber & Kemerer [17], and it was calculated as follows: Take each pair of methods in the class. If they access disjoint sets of instance variables, increase P by one. If they share at least one variable access, increase Q by one. LCOM1=P-Q, if P>Q LCOM1=0 otherwise LCOM1 = 0 indicates a cohesive class. Further two additional metrics have been proposed: LCOM2 and LCOM3. A low value of LCOM2 or LCOM3 indicates high cohesion and a well-designed class likely to have high reusability. The higher TCC and LCC, the more cohesive and thus better the class. For TCC and LCC we only consider visible methods. A method is visible unless it is Private. A method is visible also if it implements an interface or handles an event. TCC = NDC/NP LCC = (NDC+NIC) / NP 6. Limitations Most of the metrics proposed till date considers direct coupling only. If coupling was considered, values were considered on the bases that coupling exists or not. No in-between values are taken, like upto what extent coupling is there. There is no metric considering both procedure oriented and object oriented approach. Many works
6 also face lack of validation, or week validation criteria. Conclusion This paper presents a survey on software code metrics, providing an overview on what has been done in recent years. It will also help researchers to get a comprehensive view of the direction of works in area of software reusability measurement. Most of the earlier metrics were validated in theory, metrics range definition. Reports do not show the success range of the metric. Experiments were done on few data set, poor details in software metrics reports, many reports have few information about the metric usage. In this survey we extracted number of factors on which reusability depend and based on this survey new metric will be constructed to analyze source code components quality in context of reusability. And we will try to construct a metric for both procedure and object oriented approach. References [1] Tran Vu N. and Liu Dar-Biau. Application of CBSE to Projects with Evolving Requirements A Lessonlearned. [2] Voas J., COTS Software: the Economical Choice?, IEEE Software, volume 15, issue 2,1998. [3] Prieto-Diaz, Ruben Freeman, P., 1987 Classifying Software for Reusability, IEEE Software [4] G. Caldiera and V.R. Basili, Identifying and qualifying reusable software components, IEEE Computer, vol.24, Feb [5]J. Barnard, A new reusability metric for object-orientedsoftware, Software Quality Journal, vol. 7, Jan. 1998, pp [6] Y. Mao, H. Sahraoui, and H. Lounis, Reusability HypothesisVerification using Machine Learning Techniques: A CaseStudy, Proceedings of the International Conference onautomated software engineering, IEEE, 1998, pp [7] Y. Lee and K.H. Chang, Reusability and maintainabilitymetrics for objectoriented software, Proceedings of the 38thannual on Southeast regional conference (ACM-SE 38),ACM, New York, NY, USA, 2000, pp [8] E.S. Cho, M.S. Kim, and S.D. Kim, Component Metrics tomeasure Component Quality, Proceedings of the Eighth Asia-Pacific on Software Engineering Con-ference (APSEC '01),IEEE Computer Society, Washington, DC, USA, 2001,pp [9] L.H. Etzkorn, W.E. Hughes Jr., and C.G. Davis, Automatedreusability quality analysis of OO legacy software,information and Software Techn., vol.43, 2001, pp [10] S. Bhattacharya and D.E. Perry, Contextual reusabilitymetrics for eventbased architectures, Intern. Symp. onempirical Software Engineering, Nov. 2005, pp [11] G. Gui and P.D. Scott, New Coupling and Cohesion Metricsfor Evaluation of Software Component Reusability, Proc. of the Intern. Conf. for Young Computer Scientists, 2008,pp [12] N. Gill and S. Sikka, Inheritance Hierarchy Based Reuse &Reusability Metrics in OOSD, International Journal oncomputer Science and Engineering (IJCSE), vol.3, June2011, pp [13] Page Jones, The Practical guide to structured System design, YOURDON press, newyork NY [14] G. Myers, Composite/Structured Design. Van Nostrand Reinhold, 1978.
7 [15] N. E. Fenton and S. L. Pfleeger, Software Metrics: A Rigorous & Practical Approach. 2nd edn. Reading, [16] H. Dhama, Quantitative Models of Cohesion and Coupling in Softwareǁ, Journal of System and Software, 9(1)(1995), pp [17] Shyam R. Chidamber, and Chsis F. Kemerer, A Metrics Suite For Object Oriented Design,ǁ IEEE Transactions On Software Engineering, 20(6)(1994), pp [18] Hutches and V. R. Basili, System Structure Analysis: Clustering with Data Bindingsǁ, IEEE Transactions on Software Engineering, 11(8)(1985), pp [19] W. Li and S. Henry, Object- Oriented Metrics that Predict Maintainabilityǁ, Journal of Systems and Software, 23(2) (1993), pp [20] J. Chen, and J. Lu, A New Metric for Object-Oriented, Designǁ, Information and Software Technology, 5(4)(1992), pp [21] Brian Henderson-Sellers, Object- Oriented Metrics: Measures of Complexity. New York: Prentice Hall PTR, [22] Briand, L., Devanbu, W., Melo W.; (1997), "An investigation into coupling measures for C++", 19th International Conference on Software Engineering, page(s): , Boston, USA.
How To Calculate Class Cohesion
Improving Applicability of Cohesion Metrics Including Inheritance Jaspreet Kaur 1, Rupinder Kaur 2 1 Department of Computer Science and Engineering, LPU, Phagwara, INDIA 1 Assistant Professor Department
II. TYPES OF LEVEL A.
Study and Evaluation for Quality Improvement of Object Oriented System at Various Layers of Object Oriented Matrices N. A. Nemade 1, D. D. Patil 2, N. V. Ingale 3 Assist. Prof. SSGBCOET Bhusawal 1, H.O.D.
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
Keywords Class level metrics, Complexity, SDLC, Hybrid Model, Testability
Volume 5, Issue 4, April 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Review of Static
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
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 -
Object Oriented Design
Object Oriented Design Kenneth M. Anderson Lecture 20 CSCI 5828: Foundations of Software Engineering OO Design 1 Object-Oriented Design Traditional procedural systems separate data and procedures, and
Quantitative Evaluation of Software Quality Metrics in Open-Source Projects
Quantitative Evaluation of Software Quality Metrics in Open-Source Projects Henrike Barkmann Rüdiger Lincke Welf Löwe Software Technology Group, School of Mathematics and Systems Engineering Växjö University,
A Framework for Dynamic Software Analysis & Application Performance Monitoring
A Framework for Dynamic Software Analysis & Application Performance Monitoring Dr. Ashish Oberoi 1, Pallavi 2 1 (Cse, / M.M Engineering College, India) 2 (Cse, / M.M Engineering College, India) Abstract
Design with Reuse. Building software from reusable components. Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 14 Slide 1
Design with Reuse Building software from reusable components. Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 14 Slide 1 Objectives To explain the benefits of software reuse and some reuse
Design and Code Complexity Metrics for OO Classes. Letha Etzkorn, Jagdish Bansiya, and Carl Davis. The University of Alabama in Huntsville
Design and Code Complexity Metrics for OO Classes Letha Etzkorn, Jagdish Bansiya, and Carl Davis The University of Alabama in Huntsville {letzkorn, jbansiya, cdavis} @cs.uah.edu Software complexity metrics
Elite: A New Component-Based Software Development Model
Elite: A New Component-Based Software Development Model Lata Nautiyal Umesh Kumar Tiwari Sushil Chandra Dimri Shivani Bahuguna Assistant Professor- Assistant Professor- Professor- Assistant Professor-
Quality prediction model for object oriented software using UML metrics
THE INSTITUTE OF ELECTRONICS, INFORMATION AND COMMUNICATION ENGINEERS TECHNICAL REPORT OF IEICE. UML Quality prediction model for object oriented software using UML metrics CAMARGO CRUZ ANA ERIKA and KOICHIRO
International Journal of Advanced Research in Computer Science and Software Engineering
Volume 3, Issue 3, March 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Coupling and Cohesion
Component Based Development in Software Engineering
Component Based Development in Software Engineering Amandeep Bakshi, Rupinder Singh Abstract--In today s world, Component Based development is an active research area for more than a decade in software
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]
Percerons: A web-service suite that enhance software development process
Percerons: A web-service suite that enhance software development process Percerons is a list of web services, see http://www.percerons.com, that helps software developers to adopt established software
Non-Functional Requirements for COTS Software Components
Non-Functional Requirements for COTS Software Components Ljerka Beus-Dukic School of Computing and Mathematics University of Northumbria at Newcastle Ellison Building, Newcastle upon Tyne NE1 8ST, United
V. Phani Krishna et al, / (IJCSIT) International Journal of Computer Science and Information Technologies, Vol. 2 (6), 2011, 2915-2919
Software Quality Assurance in CMM and XP- A Comparative Study CH.V. Phani Krishna and Dr. K.Rajasekhara Rao CSE Department, KL University, Guntur dt., India. Abstract Software Quality Assurance is a planned
Knowledge Infrastructure for Project Management 1
Knowledge Infrastructure for Project Management 1 Pankaj Jalote Department of Computer Science and Engineering Indian Institute of Technology Kanpur Kanpur, India 208016 [email protected] Abstract In any
Modernized and Maintainable Code. Frank Weil, Ph.D. UniqueSoft, LLC
Modernized and Maintainable Code Frank Weil, Ph.D. UniqueSoft, LLC UniqueSoft is a provider of next-generation software development tools and services specializing in modernizing legacy software using
Component Based Software Engineering: A Broad Based Model is Needed
Component Based Software Engineering: A Broad Based Model is Needed Allen Parrish ([email protected]) Brandon Dixon ([email protected]) David Hale ([email protected]) Department of Computer Science
Agile Software Engineering, a proposed extension for in-house software development
Journal of Information & Communication Technology Vol. 5, No. 2, (Fall 2011) 61-73 Agile Software Engineering, a proposed extension for in-house software development Muhammad Misbahuddin * Institute of
Basic Testing Concepts and Terminology
T-76.5613 Software Testing and Quality Assurance Lecture 2, 13.9.2006 Basic Testing Concepts and Terminology Juha Itkonen SoberIT Contents Realities and principles of Testing terminology and basic concepts
PREDICTIVE TECHNIQUES IN SOFTWARE ENGINEERING : APPLICATION IN SOFTWARE TESTING
PREDICTIVE TECHNIQUES IN SOFTWARE ENGINEERING : APPLICATION IN SOFTWARE TESTING Jelber Sayyad Shirabad Lionel C. Briand, Yvan Labiche, Zaheer Bawar Presented By : Faezeh R.Sadeghi Overview Introduction
How To Validate An Isos 9126 Quality Model
Validation of a Standard- and Metric-Based Software Quality Model Rüdiger Lincke and Welf Löwe School of Mathematics and Systems Engineering, Växjö University, 351 95 Växjö, Sweden {rudiger.lincke welf.lowe}@msi.vxu.se
The Phases of an Object-Oriented Application
The Phases of an Object-Oriented Application Reprinted from the Feb 1992 issue of The Smalltalk Report Vol. 1, No. 5 By: Rebecca J. Wirfs-Brock There is never enough time to get it absolutely, perfectly
A Study on Service Oriented Network Virtualization convergence of Cloud Computing
A Study on Service Oriented Network Virtualization convergence of Cloud Computing 1 Kajjam Vinay Kumar, 2 SANTHOSH BODDUPALLI 1 Scholar(M.Tech),Department of Computer Science Engineering, Brilliant Institute
Web Services Metrics: A Survey and A Classification
2011 International Conference on Network and Electronics Engineering IPCSIT vol.11 (2011) (2011) IACSIT Press, Singapore Web Services Metrics: A Survey and A Classification Mohamad Ibrahim Ladan, Ph.D.
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
International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research)
International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Journal of Engineering, Business and Enterprise
A COMPARATIVE STUDY OF VARIOUS SOFTWARE DEVELOPMENT METHODS AND THE SOFTWARE METRICS USED TO MEASURE THE COMPLEXITY OF THE SOFTWARE
A COMPARATIVE STUDY OF VARIOUS SOFTWARE DEVELOPMENT METHODS AND THE SOFTWARE METRICS USED TO MEASURE THE COMPLEXITY OF THE SOFTWARE Pooja Kaul 1, Tushar Kaul 2 1 Associate Professor, DAV Institute of Management
Impact of Service Oriented Architecture on ERP Implementations in Technical Education
Impact of Service Oriented Architecture on ERP Implementations in Technical Education Swati Verma Department of Computer Science & Engg, B.T. Kumaon Institute of Technology, Dwarahat, 263653, India. E-mail:
Software Engineering. Software Engineering. Component-Based. Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering Component-Based Software Engineering Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To explain that CBSE is concerned with developing standardised components
Application of software product quality international standards through software development life cycle
Central Page 284 of 296 Application of software product quality international standards through software development life cycle Mladen Hosni, Valentina Kirinić Faculty of Organization and Informatics University
THE EVOLUTION OF COMPONENT BASED SOFTWARE ENGINEERING FROM THE TRADITIONAL APPROACH TO CURRENT PRACTICES
International Journal of Engineering and Management Research, Vol. 2, Issue-3, JUNE 2012 ISSN No.: 2250-0758 Pages: 45-52 www.ijemr.net THE EVOLUTION OF COMPONENT BASED SOFTWARE ENGINEERING FROM THE TRADITIONAL
Axiomatic design of software systems
Axiomatic design of software systems N.P. Suh (1), S.H. Do Abstract Software is playing an increasingly important role in manufacturing. Many manufacturing firms have problems with software development.
Verification and Validation of Software Components and Component Based Software Systems
Chapter 5 29 Verification and Validation of Software Components and Component Based Christina Wallin Industrial Information Technology Software Engineering Processes ABB Corporate Research [email protected]
TRADITIONAL VS MODERN SOFTWARE ENGINEERING MODELS: A REVIEW
Year 2014, Vol. 1, issue 1, pp. 49-56 Available online at: http://journal.iecuniversity.com TRADITIONAL VS MODERN SOFTWARE ENGINEERING MODELS: A REVIEW Singh RANDEEP a*, Rathee AMIT b a* Department of
EXTENDED ANGEL: KNOWLEDGE-BASED APPROACH FOR LOC AND EFFORT ESTIMATION FOR MULTIMEDIA PROJECTS IN MEDICAL DOMAIN
EXTENDED ANGEL: KNOWLEDGE-BASED APPROACH FOR LOC AND EFFORT ESTIMATION FOR MULTIMEDIA PROJECTS IN MEDICAL DOMAIN Sridhar S Associate Professor, Department of Information Science and Technology, Anna University,
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.
Extend the value of your core business systems.
Legacy systems renovation to SOA September 2006 Extend the value of your core business systems. Transforming legacy applications into an SOA framework Page 2 Contents 2 Unshackling your core business systems
SOACertifiedProfessional.Braindumps.S90-03A.v2014-06-03.by.JANET.100q. Exam Code: S90-03A. Exam Name: SOA Design & Architecture
SOACertifiedProfessional.Braindumps.S90-03A.v2014-06-03.by.JANET.100q Number: S90-03A Passing Score: 800 Time Limit: 120 min File Version: 14.5 http://www.gratisexam.com/ Exam Code: S90-03A Exam Name:
Different Approaches used in Software Product Families
Different Approaches used in Software Product Families Rafia Inam Mälardalens University. [email protected] Abstract The use of software in consumer products is growing tremendously in current era. Further
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
Usability metrics for software components
Usability metrics for software components Manuel F. Bertoa and Antonio Vallecillo Dpto. Lenguajes y Ciencias de la Computación. Universidad de Málaga. {bertoa,av}@lcc.uma.es Abstract. The need to select
A Configuration Management Model for Software Product Line
A Configuration Management Model for Software Product Line Liguo Yu 1 and Srini Ramaswamy 2 1 Computer Science and Informatics Indiana University South Bend South Bend, IN 46634, USA [email protected] 2 Computer
Reusability of WSDL Services in Web Applications
599 Reusability of WSDL Services in Web Applications 1 Jaspreet Singh, 2 Sandeep Saini 1 Assistant Professor Department Of Computer Science & Engineering, Chandigarh University Gharuan, Punjab, India 2
Software Defect Prediction Tool based on Neural Network
Software Defect Prediction Tool based on Neural Network Malkit Singh Student, Department of CSE Lovely Professional University Phagwara, Punjab (India) 144411 Dalwinder Singh Salaria Assistant Professor,
Component visualization methods for large legacy software in C/C++
Annales Mathematicae et Informaticae 44 (2015) pp. 23 33 http://ami.ektf.hu Component visualization methods for large legacy software in C/C++ Máté Cserép a, Dániel Krupp b a Eötvös Loránd University [email protected]
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
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
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
A Comparision Between Traditional and Component Based Software Development Process Models
J. Comp. & Math. Sci. Vol.3 (3), 308-319 (2012) A Comparision Between Traditional and Component Based Software Development Process Models MANJU KAUSHIK 1 and M. S. DULAWAT 2 1 Research Scholars, Mohanlal
A Quality Model for E-Learning as a Service in Cloud Computing Framework
A Quality Model for E-Learning as a Service in Cloud Computing Framework Dr Rajni Jindal Professor, Department of IT Indira Gandhi Institute of Technology, New Delhi, INDIA [email protected] Alka Singhal
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
Software cost estimation
Software cost estimation Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 26 Slide 1 Objectives To introduce the fundamentals of software costing and pricing To describe three metrics for
Architecture Centric Development in Software Product Lines
Architecture Centric Development in Software Product Lines Aurangzeb Khan DCE, College of E & ME National University of Science and Technology (NUST), Pakistan Farooque Azam DCE, College of E & ME National
AN EVALUATION OF MODEL-BASED SOFTWARE SYNTHESIS FROM SIMULINK MODELS FOR EMBEDDED VIDEO APPLICATIONS
International Journal of Software Engineering and Knowledge Engineering World Scientific Publishing Company AN EVALUATION OF MODEL-BASED SOFTWARE SYNTHESIS FROM SIMULINK MODELS FOR EMBEDDED VIDEO APPLICATIONS
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
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
Program Understanding in Software Engineering
Taming the complexity: The need for program understanding in software engineering Raghvinder S. Sangwan, Ph.D. Pennsylvania State University, Great Valley School of Graduate Professional Studies Robert
UIMA and WebContent: Complementary Frameworks for Building Semantic Web Applications
UIMA and WebContent: Complementary Frameworks for Building Semantic Web Applications Gaël de Chalendar CEA LIST F-92265 Fontenay aux Roses [email protected] 1 Introduction The main data sources
Lina khalid Ahmed Department of Software Engineering Zarqa University Amman, Jordan
World of Computer Science and Information Technology Journal (WCSIT) ISSN: 2221-0741 Vol. 5, No. 1, 11-15, 2015 Role of Component Certification in CBSE Activities for Building High Quality Software Lina
Umbrella: A New Component-Based Software Development Model
2009 International Conference on Computer Engineering and Applications IPCSIT vol.2 (2011) (2011) IACSIT Press, Singapore Umbrella: A New Component-Based Software Development Model Anurag Dixit and P.C.
Feature. Understanding Software Metric Use
Feature David Henderson is assistant professor of accounting in the College of Business at the University of Mary Washington (Fredericksburg, Virginia, USA). He can be reached at [email protected]. Steven
Process Models and Metrics
Process Models and Metrics PROCESS MODELS AND METRICS These models and metrics capture information about the processes being performed We can model and measure the definition of the process process performers
Modeling Software Maintainability and Quality Assurance in the Agile Environment
, pp.83-90 http://dx.doi.org/10.14257/ijdta.2014.7.3.09 Modeling Software Maintainability and Quality Assurance in the Agile Environment Priyanka Upadhyay, Abhishek Singh and Naveen Garg Department of
Chap 4. Using Metrics To Manage Software Risks
Chap 4. Using Metrics To Manage Software Risks. Introduction 2. Software Measurement Concepts 3. Case Study: Measuring Maintainability 4. Metrics and Quality . Introduction Definition Measurement is the
A Software Engineering Process for Operational Space Weather Systems. S. Dave Bouwer, W. Kent Tobiska Space Environment Technologies www.spacewx.
A Software Engineering Process for Operational Space Weather Systems S. Dave Bouwer, W. Kent Tobiska Space Environment Technologies www.spacewx.com Transitioning Research Models into Operations Software
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
Simulating the Structural Evolution of Software
Simulating the Structural Evolution of Software Benjamin Stopford 1, Steve Counsell 2 1 School of Computer Science and Information Systems, Birkbeck, University of London 2 School of Information Systems,
Open Source Software: How Can Design Metrics Facilitate Architecture Recovery?
Open Source Software: How Can Design Metrics Facilitate Architecture Recovery? Eleni Constantinou 1, George Kakarontzas 2, and Ioannis Stamelos 1 1 Computer Science Department Aristotle University of Thessaloniki
Component-based Development Process and Component Lifecycle Ivica Crnkovic 1, Stig Larsson 2, Michel Chaudron 3
Component-based Development Process and Component Lifecycle Ivica Crnkovic 1, Stig Larsson 2, Michel Chaudron 3 1 Mälardalen University, Västerås, Sweden, [email protected] 2 ABB Corporate Research,
Object-Oriented Software Specification in Programming Language Design and Implementation
Object-Oriented Software Specification in Programming Language Design and Implementation Barrett R. Bryant and Viswanathan Vaidyanathan Department of Computer and Information Sciences University of Alabama
ISO/IEC 9126 in practice: what do we need to know?
ISO/IEC 9126 in practice: what do we need to know? P. Botella, X. Burgués, J.P. Carvallo, X. Franch, G. Grau, J. Marco, C. Quer Abstract ISO/IEC 9126 is currently one of the most widespread quality standards.
Using Provenance to Improve Workflow Design
Using Provenance to Improve Workflow Design Frederico T. de Oliveira, Leonardo Murta, Claudia Werner, Marta Mattoso COPPE/ Computer Science Department Federal University of Rio de Janeiro (UFRJ) {ftoliveira,
