WestminsterResearch
|
|
|
- Randolf Sanders
- 10 years ago
- Views:
Transcription
1 WestminsterResearch A comparative analysis of maintainability approaches for web applications. Emad Ghosheh 1 Jihad Qaddour 2 Matthew Kuofie 2 Sue Black 3 * 1 IBM-Global Services, Kansas City, MO 64138, USA 2 School of Information Technology, Illinois State University 3 School of Business, Computing and Information Management, London South Bank University * Sue Black now works within the Harrow School of Computer Science at the University of Westminster Copyright [2006] IEEE. Reprinted from the Proceedings of the IEEE International Conference on Computer Systems and Applications, 2006, pp This material is posted here with permission of the IEEE. Such permission of the IEEE does not in any way imply IEEE endorsement of any of the University of Westminster's products or services. Internal or personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution must be obtained from the IEEE by writing to [email protected]. By choosing to view this document, you agree to all provisions of the copyright laws protecting it. The WestminsterResearch online digital archive at the University of Westminster aims to make the research output of the University available to a wider audience. Copyright and Moral Rights remain with the authors and/or copyright owners. Users are permitted to download and/or print one copy for non-commercial private study or research. Further distribution and any use of material from within this archive for profit-making enterprises or for commercial gain is strictly forbidden. Whilst further distribution of specific materials from within this archive is forbidden, you may freely distribute the URL of the University of Westminster Eprints ( In case of abuse or copyright appearing without permission [email protected].
2 A Comparative Analysis of Maintainability Approaches for Web Applications Emad Ghosheh, Jihad Qaddour, Matthew Kuofie and Sue Black Abstract Web applications incorporate important business assets and offer a convenient way for businesses to promote their services through the internet. Many of these web applications have evolved from simple HTML pages to complex applications that have high maintenance cost. The high maintenance cost of web applications is due to the inherent characteristics of web applications, to the fast internet evolution and to the pressing market which imposes short development cycles and frequent modifications. In order to control the maintenance cost, quantitative metrics and models for predicting web applications maintainability must be used. Since, web applications are different from traditional software systems, models and metrics for traditional systems can not be applied to web applications. The reason for that is that web applications have special features such as hypertext structure, dynamic code generation and heterogenousity that can not be captured by traditional and object-oriented metrics. In this paper, we will provide a comparative analysis of the different approaches for predicting web applications maintainability and point out areas that need further research. Index Terms Maintainability, web applications, regression analysis, WebMo, WAMM. I. INTRODUCTION MANY World Wide Web applications incorporate important business assets and offer a convenient way for businesses to promote their services through the Internet. Many of these web applications evolved from simple HTML pages to complex applications which have high maintenance cost. This is due to the laws of software evolution and to some special characteristics of web applications. The following are two software evolution laws [1] that affect the evolution of web applications: 1. The law of continuing change: A program used in real world must change or eventually it will become less useful in the changing world. 2. The law of increasing complexity: As a program evolves it becomes more complex and extra resources are needed to preserve and simplify its structure. In addition to the reasons above, web applications have some characteristics that make their maintenance costly such as heterogenousity, technology advancement, speed of evolution, dynamic code generation, duplicated code, and tangled and scattered code. Emad Ghosheh IBM-Global Services, Kansas City, MO 64138, USA. Phone: [email protected] Dr. Jihad Qaddour School of Information Technology, Illinois State University, Normal, IL , USA. Phone: [email protected] Dr. Matthew Kuofie School of Information Technology, Illinois State University, Normal, IL , USA. Phone: [email protected] Dr. Sue Black School of Business, Computing and Information Management, London South Bank University, London SE1 0AA, UK. Phone: [email protected] Web applications are different from traditional software systems: Models and metrics for traditional systems can not be applied to web applications. The reason for that is that web applications have special features such as hypertext structure, dynamic code generation and heterogenousity that can not be captured by traditional and object-oriented metrics. Another difference is the difference in the unit of measurement of a metric for each application domain. For traditional systems, the unit of measurement of a metric can be a file, procedure or an attribute. For object-oriented systems, the unit of measurement can be a class, interface or attributes. For web applications, the unit of measurement is a web object which can be either an HTML file, JSP, Servlet or client scripts. The remainder of this paper is organized as follows: Section 2 provides a review on related research. Section 3 provides a comparative analysis of the different approaches for predicting web applications maintainability. Finally, section 4 provides a conclusion and describes future wok to be undertaken. II. RELATED WORK The cost of software maintenance accounts for a large portion of the overall cost of a software system [2], [3]. Software maintenance can be categorized into perfective, adaptive, corrective and preventive maintenance. Perfective maintenance improves the functionality of the software system by expanding requirements. Adaptive maintenance deals with porting a software system to a new hardware or software environment. Corrective maintenance deals with modifications associated with errors in the software system. Preventive maintenance deals with software modifications that prevent possible future errors. One of the main concerns of system stakeholders is to increase the maintainability of the software system. Maintainability can be defined as the ease with which a software system or component can be modified to correct faults, improve performance or other attributes, or adapt to a changed environment [2], [4]. Maintainability can be measured by measuring some of the sub-characteristics of maintainability such as understandability, analyzability, modifiability and testability. Some studies have measured maintainability by measuring both modifiability and understandability [5], [6], [7]. Understandability is an important sub-characteristics of maintainability, since professionals spend at least half of their time analyzing software to understand it [8]. In some studies the maintainability has been quantified in the Maintainability Index (MI) [9], [10], [11]. The Maintainability Index is measured as a function of directly measurable attributes A 1 through A n as shown in Equation 1: M = f(a 1 + A A n ) (1) The measure (M) is called a Maintainability Index which can /06/$20.00/ 2006 IEEE 1155
3 differ depending on the attributes being used in the measurement. For example, Sneed [12] proposed a software quality assessment environment called SOFTING. SOFTING uses the following design attributes: modularity, portability, integrity, redundancy, complexity, generality, time and span-utilization with associated metrics to calculate the maintainability index. Other studies used the effort for measuring maintainability [13]. In [14] change effort, which is the total analysis and programming effort spent on a particular change is used to measure maintainability. There has been a lot of effort in constructing formulas for measuring maintainability. The following are the different approaches used to quantify maintainability from software metrics [9]: Hierarchical Multidimensional Assessment: In this technique the attributes are defined in a hierarchy. The top level is divided into three levels control structure, information structure and documentation. Each level is assigned to certain metrics. The total maintainability index is calculated by adding up all the metrics in the hierarchy [4]. Aggregate Complexity Measure: In this technique the maintainability is calculated using a function of entropy [15]. Regression Analysis Models: In this technique a polynomial equation is constructed to measure maintainability using a function of metrics [4]. Factor Analysis: This is a statistical technique where metrics are grouped into clusters where each cluster has metrics that are highly correlated to each other and lowly correlated to metrics in other clusters. Each group of metrics presents a single underlying factor [15]. Principal Components Analysis: This is also a statistical technique that reduces the collinearity between independent variables. It will reduce the number of independent variables used to construct a maintainability regression model [16]. All these models were tested and validated on Hewlett- Packard systems. They showed accurate measures of maintainability from simple metrics. Out of the five two were named as being the most practical ones namely, Regression Analysis and Hierarchical Multidimensional Assessment. Most of the studies related to maintainability measurements have been on structured and object-oriented systems. Little work has been done with this regard on web applications. III. COMPARISON AND ANALYSIS Most of the studies related to maintainability measurements have been on structured and object-oriented systems. Little work has been done with this regard on web applications. Most of the studies applied on web application measure maintainability using the effort or the Maintainability Index. None of the studies has used understandability, analyzability, modifiability and testability in measuring maintainability. Most studies used source code metrics for measuring maintainability. The drawback of using source code metrics is that prediction can only be made later in the development project. Early measurements are much better since they help in mitigating risks early in the development process. Table I shows a comparison between the different approaches used for predicting maintainability of web applications. The first approach used the Oman and Hagemeister Hierarchical Tree model. WAMM [11] used source code metrics and the maintainability was measured using the Maintainability Index. In WAMM new metrics were defined but there is still a need to validate those metrics empirically and theoretically. There is a need to prove how practical WAMM will be in an industrial environment since WAMM captures a lot of metrics which might make it unpractical to implement unless there is a tool that can capture all the metrics and provide a single Maintainability Index with a click on a button. The most common approach used is the Regression Analysis approach. There a couple of studies in the literature using Regression Analysis to define and validate metrics and models for web applications. In [17] design and authoring effort were the dependent variables. The independent variables were based on source code metrics. There is still a need to do more empirical studies to validate the new defined metrics in order to make general conclusions. In [18] design metrics were introduced based on W2000 which is a UML like language. In the study the dependent variables were variations of design effort. The independent variables were measured from the presentation, navigational and information models. Some data for the presentation model was discarded in the study due to lack of participation from all subjects. It is not known how useful this approach would be, since it is not known if the W2000 language is used outside the educational environment and if it will become popular in industrial environments. In [19] Maintenance Time is used as the dependent variable and some metrics based on the Navigational model are used as independent variables. In this approach like the previous one it is not known how practical this approach is. WebMo [20] introduces the notion of Web Objects as size measures for predicting the effort of developing web applications. There is a need for more empirical studies to prove the benefit of WebMo. Case Based Reasoning [21], [22] is an approach that uses a number of projects features stored in a database to predict the effort of the current project. The main problem with this approach is that web applications keep changing and new technologies are introduced all the time. Therefore, there is a need to always update the features database by adding new projects and removing obselete projects that use old technologies. This might become unpractical unless there is a way to automate that process. IV. CONCLUSION Web applications are one of the fastest growing classes of software systems. They have diffused in many and different business domains such as scientific activities, product sale and distribution and medical activities[23], [24]. These web applications have evolved into complex applications that have high maintenance cost. The high maintenance cost of web applications is due to the inherent characteristics of web applications, to the fast Internet evolution and to the pressing market which imposes short development cycles[24] and frequent modifications. An example for Internet evolution is amazon.com a leading e-commerce web application. Amazon.com started with 0 customers in In 2003 it had around 20 million customers and the largest online store in 220 countries[25]. In order to control the maintenance cost of web applications, quantitative 1156
4 GhoshehETAL:ACOMPARATIVEANALYSISOFMAINTAINABILITYAPPROACHESFORWEBAPPLICATIONS Study Dependent Variable Independent Variable Validation Comments WAMM [11] Maintainability Oman and Hagemeister source tree Index Regession Design and Authoring Analysis [17] Effort Regession Analysis [18] Information Navigation Presentation and Total Design Effort (Control Structure and Information Structure at System and Component level) Source Code Metrics (PageCount, MediaCount, ProgramCount, Total- PageAllocation, TotalMediaAllocation, TotalEmbeddedCodeLength, ReusedMediaCount, ReusedProgramCount, TotalReusedMediaAllocation, TotalReusedCodeLength, Connectivity, ConnectivityDensity, TotalPageComplexity, Cyclomatic- Complexity, SizeCFSU, Structure) Effort, W2000 UML like language (design Effort, metrics for Navigational Model, Effort, Informational Model, Presentation Model), Metrics for Presentation Model were excluded since it was not mandatory in the experiment. Regession Maintenance Time Navigational Model Metrics (Num-Empiricaber Validation Little Empirical Validation Analysis [19] of Navigational Contexts and Theoritical Vali- (NNC), Number of Navigational dation Links (NNL), Density of a Navigational Map (DeNM), Depth of a Navigational Map (DNM), Breadth of a Navigational Map (BNM), Minimum Path Between Navigational Contexts (MPBNC), Number of Path Between Navigational Contexts (NPBNC), Compactness (Cp)) WebMo [20] Effort and Duration Size Metrics called Web Objects (Computed using Halsteads equation for volume) Case BasedDesign and Authoring Project Features (Total Web Pages, Reasoning Effort Total Images, Total Animations, [21], [22] Total Effort) TABLE I A COMPARISON OF WEB MAINTAINABILITY APPROACHES Empirical Validation The number of projects used is still small, Need more projects to generalize results, No metrics and models for predicting web applications maintainability must be used. The maintainability metrics and models can be useful for: Predicting the maintenance cost to provide accurate estimates in a project lifecycle[13]. Comparing different design documents to select the documents that have the highest maintainability. Identifying risky components to mitigate risks early in the project by reengineering or allocating experienced developers to the risky components[26]. Improving the software development process[27]. In this paper we have provided an introduction to the high maintenance cost problem for web applications. We discussed related research in the area of maintainability models. Towards the end of the paper we provided a comparative analysis of different approaches for predicting maintainability of web applications and pointed out areas that were lacking and needed further research. A. Future Work As a conclusion, there are many avenues of research in building metrics and models for predicting web applications maintainability. Most of the studies are still exploratory and need 1157
5 further validation. Some metrics have been defined for web applications. But still, there is a need to provide theoretical and empirical validation for these metrics so that they can be accepted in the software community. In our future work we will build a maintainability prediction model for web applications using early design metrics based on Web Application Extension (WAE) [28]. WAE is a modeling language that has extensions for UML to capture the special features of web applications. We will use the following design attributes as a basis for defining the metrics for WAE: Coupling [5], Cohesion [5], Clarity [5] Complexity and Size [13], Simplicity [5] and Reusability. We will measure two important components of design maintainability for web applications namely: understandability and modifiability. These two components have been used for developing maintainability models for object oriented systems[5] and still have not been used in the context of web applications. To summarize our future work will include the following: Provide a maintainability prediction model for web applications based on statistical regression analysis. This model will provide prediction measures for different maintainability measures, such as Understandability Time, Modifiability Time, Understandability Correctness, Modifiability Correctness and Modifiability Rate. Provide a validation of a number of product design metrics for web applications. This validation includes the statistical significance and magnitude that the design product metric has on maintainability measures. The validation of the product metrics will be done using correlation and regression analysis. Provide a complete set of empirical experiments for web applications that can be generalized to other settings. These experiments will build on previous research and provide a starting point for further research on web application s maintainability. Provide a comparison between our prediction model and other models. Provide an environment for the maintainability prediction model that includes tools and procedures so that it can be used in an industrial environment. REFERENCES [1] M. Lehman, J. Ramil, P. Wernick, D. Perry, and W. Turski, Metrics and laws of software evolution the nineties view, in Proceedings of the 4th International Software Metrics Symposium. IEEE Computer Society Press, 1997, pp [2] Pankaj Bhatt, Gautam Shroff, and Arun Misra, Dynamics of software maintenance, ACM SIGSOFT Software Engineering Notes, vol. 29, no. 4, pp. 1 5, [3] Norman Wilde and Ross Huitt, Maintenance support for object-oriented programs, IEEE Transactions on Software Engineering, vol. 18, no. 12, pp , [4] Paul Oman and Jack Hagemeister, Construction of testing polynomials predicting software maintainability, Journal of Software Systems, vol. 27, no. 3, pp , [5] Lionel Briand, Christian Bunse, and Jong Daly, A controlled experiment for evaluating quality guidelines on the maintainability of object-oriented designs, IEEE Transactions on Software Engineering, vol. 27, no. 06, pp , [6] Marcela Mario, Esperanza Manso, and Giovanni Cantone, Building uml class diagram maintainability prediction models based on early metrics, in Proceedings of the 9th International Software Metrics Symposium. IEEE Computer Society Press, 2003, pp [7] Matinee Kiewkanya, Nongyao Jindasawat, and Pornsiri Muenchaisri, A methodology for constructing maintainability model of object-oriented design, in Proceedings of the 4th International Conference on Quality Software. IEEE Computer Society Press, 2004, pp [8] Thomas Corbi, Program understanding: challenge for the 1990s, IBM Systems Journal, vol. 28, no. 2, pp , [9] Don Coleman, Dan Ash, Bruce Lowther, and Paul Oman, Using metrics to evaluate software system maintainability, IEEE Computer, vol. 27, no. 8, pp , [10] Welker Kurt and Paul Oman, Software maintainability metrics models in practice, Crosstalk, Journal of Defense Software Engineering, vol. 8, no. 11, pp , [11] Giuseppe DiLucca, Anna Fasolino, Porfirio Tramontana, and Corrado Visaggio, Towards the definition of a maintainability model for web applications, in Proceeding of the 8th European Conference on Software Maintenance and Reengineering. IEEE Computer Society Press, 2004, pp [12] Harry Sneed and Andrs Merey, Automated software quality assurance, IEEE Transactions on Software Engineering, vol. 11, no. 9, pp , [13] Fabrizio Fioravanti and Paolo Nesi, Estimation and prediction metrics for adaptive maintenance effort of object-oriented systems, IEEE Transactions on Software Engineering, vol. 27, no. 12, pp , [14] Wiebe Hordijk and Roel Wieringa, Surveying the factors that influence maintainability, in Proceedings of the 10th European software engineering conference held jointly with 13th ACM SIGSOFT international symposium on Foundations of software engineering. ACM Press, 2005, pp [15] John Munson and Taghi Khoshgoftaat, The detection of fault-prone programs, IEEE Transactions on Software Engineering, vol. 18, no. 5, pp , [16] Fang Zhuo, Bruce Lowther, Paul Oman, and Jack Hagemeister, Constructing and testing software maintainability assessment models, in Proceedings of the 1st International Software Metrics Symposium. IEEE Computer Society Press, 1993, pp [17] Emilia Mendes, Nile Mosley, and Steve Counsell, Web metrics - estimating design and authoring effort, IEEE Multimedia, vol. 08, no. 01, pp , [18] Luciano Baresi, Sandro Morasca, and Paolo Paolini, Estimating the design effort of web applications, in Proceedings of the 9th International Software Metrics Symposium. IEEE Computer Society Press, 2003, pp [19] Silvia Abraho, Nelly Condori-Fernndez1, Luis Olsina,, and Oscar Pastor, Defining and validating metrics for navigational models, in Proceedings of the 9th International Software Metrics Symposium. IEEE Computer Society Press, 2003, pp [20] Donald Reifer, Web development: estimating quick-time-to-market, IEEE Software, vol. 17, no. 8, pp , [21] Emilia Mendes, Nile Mosley, and Steve Counsell, Early web size measures and effort prediction for web costimation, in Proceedings of the 9th International Software Metrics Symposium. IEEE Computer Society Press, 2003, pp [22] Emilia Mendes, Nile Mosley, and Steve Counsell, A comparison of development effort estimation techniques for web hypermedia applications, pp , [23] Sebastian Elbaum, Gregg Rothermel, Srikanth Karre, and Marc Fisher, Leveraging user-session data to support web application testing, IEEE Transactions on Software Engineering, vol. 31, no. 3, pp , [24] Fillipo Ricca, Analysis, testing and re-structuring of web applications, in Proceedings of the 20th IEEE International Conference on Software Maintenance. IEEE Computer Society Press, 2004, pp [25] Len Bass, Paul Clements, and Rick Kazman, Software Architecture in Practice, Addison-Wesley, 2 edition, [26] Khaled EL-Emam, A methodology for validating software product metrics, Tech. Rep. NRC 44142, National Research Council Canada, [27] Shahid Bhatti, Why quality? iso 9126 software quality metrics (functionality) support by uml suite, ACM SIGSOFT Software Engineering Notes, vol. 30, no. 2, pp. 1 5, [28] Jim Conallen, Building Web Applications with UML, Addison-Wesley, 2 edition,
Design Metrics for Web Application Maintainability Measurement
WestminsterResearch http://www.wmin.ac.uk/westminsterresearch Design metrics for web application maintainability measurement. Emad Ghosheh 1 Sue Black 2 Jihad Qaddour 3 1 Department of Electrical and Electronic
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,
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]
Software Deterioration And Maintainability A Model Proposal
Software Deterioration And Maintainability A Model Proposal Rikard Land Mälardalen University Department of Computer Engineering Box 883 SE-721 23 Västerås, Sweden +46 (0)21 10 70 35 [email protected]
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
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
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
Software Engineering. So(ware Evolu1on
Software Engineering So(ware Evolu1on 1 Software change Software change is inevitable New requirements emerge when the software is used; The business environment changes; Errors must be repaired; New computers
Efficient Agent Based Testing Framework for Web Applications
International Journal of Scientific & Engineering Research, Volume 3, Issue 2, February-2012 1 Efficient Agent Based Testing Framework for Web Applications Ms.Neha Saluja Prof.Amit Kanskar Abstract- Now
Software Engineering/Courses Description Introduction to Software Engineering Credit Hours: 3 Prerequisite: 0306211(Computer Programming 2).
0305203 0305280 0305301 0305302 Software Engineering/Courses Description Introduction to Software Engineering Prerequisite: 0306211(Computer Programming 2). This course introduces students to the problems
A Framework of Model-Driven Web Application Testing
A Framework of Model-Driven Web Application Testing Nuo Li, Qin-qin Ma, Ji Wu, Mao-zhong Jin, Chao Liu Software Engineering Institute, School of Computer Science and Engineering, Beihang University, China
Techniques and Tools for Rich Internet Applications Testing
Techniques and Tools for Rich Internet Applications Testing Domenico Amalfitano Anna Rita Fasolino Porfirio Tramontana Dipartimento di Informatica e Sistemistica University of Naples Federico II, Italy
Web Application Regression Testing: A Session Based Test Case Prioritization Approach
Web Application Regression Testing: A Session Based Test Case Prioritization Approach Mojtaba Raeisi Nejad Dobuneh 1, Dayang Norhayati Abang Jawawi 2, Mohammad V. Malakooti 3 Faculty and Head of Department
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
Chapter 9 Software Evolution
Chapter 9 Software Evolution Summary 1 Topics covered Evolution processes Change processes for software systems Program evolution dynamics Understanding software evolution Software maintenance Making changes
Protocol for the Systematic Literature Review on Web Development Resource Estimation
Protocol for the Systematic Literature Review on Web Development Resource Estimation Author: Damir Azhar Supervisor: Associate Professor Emilia Mendes Table of Contents 1. Background... 4 2. Research Questions...
[Rokadiya,5(4): October-December 2015] ISSN 2277 5528 Impact Factor- 3.145
INTERNATIONALJOURNALOFENGINEERING SCIENCES&MANAGEMENT A MODEL FOR WEB BASED APPLICATION USING MANUAL AND AUTOMATED TESTING TECHNIQUES AND ALSO STUDY FAULTS, THEIR EFFECTS AND TESTING CHALLENGES IN WEB
Analysis vs. Design: What s the Difference?
Analysis vs. Design: What s the Difference? Caution Requirements and Non-requirements Decision Process, Version 1 Tinkertoy Tic-Tac-Toe Kinds of Requirements Decision Process, Version 2? Separating Requirements
Change Risk Assessment: Understanding Risks Involved in Changing Software Requirements
Change Risk Assessment: Understanding Risks Involved in Changing Software Requirements Byron J. Williams Jeffrey Carver Ray Vaughn Department of Computer Science and Engineering Mississippi State University
[2006] IEEE. Reprinted, with permission, from [M. Ye and K. Sandrasegaran, Teaching about Firewall Concepts using the inetwork Simulator, Information
[2006] IEEE. Reprinted, with permission, from [M. Ye and K. Sandrasegaran, Teaching about Firewall Concepts using the inetwork Simulator, Information Technology Based Higher Education and Training, 2006.
Project management for cloud computing development
Page 16 Oeconomics of Knowledge, Volume 2, Issue 2, 2Q 2010 Project management for cloud computing development Paul POCATILU, PhD, Associate Professor Department of Economic Informatics Academy of Economic
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
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
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.
Regression Testing Based on Comparing Fault Detection by multi criteria before prioritization and after prioritization
Regression Testing Based on Comparing Fault Detection by multi criteria before prioritization and after prioritization KanwalpreetKaur #, Satwinder Singh * #Research Scholar, Dept of Computer Science and
An Aspect-Oriented Product Line Framework to Support the Development of Software Product Lines of Web Applications
An Aspect-Oriented Product Line Framework to Support the Development of Software Product Lines of Web Applications Germán Harvey Alférez Salinas Department of Computer Information Systems, Mission College,
Requirements engineering
Learning Unit 2 Requirements engineering Contents Introduction............................................... 21 2.1 Important concepts........................................ 21 2.1.1 Stakeholders and
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
JOURNAL OF OBJECT TECHNOLOGY
JOURNAL OF OBJECT TECHNOLOGY Online at http://www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2007 Vol. 6, No. 1, January-February 2007 CM Configuration Change Management John D.
Software Cost Estimation: A Tool for Object Oriented Console Applications
Software Cost Estimation: A Tool for Object Oriented Console Applications Ghazy Assassa, PhD Hatim Aboalsamh, PhD Amel Al Hussan, MSc Dept. of Computer Science, Dept. of Computer Science, Computer Dept.,
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
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,
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
Going Faster: Testing The Web Application. By Adithya N. Analysis and Testing of Web Applications Filippo Ricca and Paolo Tonella
Testing Web Applications Testing Web Applications By Adithya N. Going Faster: Testing The Web Application Edward Hieatt and Robert Mee (IEEE Software) Analysis and Testing of Web Applications Filippo Ricca
Equivalent Capacity and Its Application to Bandwidth Allocation in High-Speed Networks
University of Pennsylvania ScholarlyCommons Departmental Papers (ESE) Department of Electrical & Systems Engineering 9-1-1991 Equivalent Capacity and Its Application to Bandwidth Allocation in High-Speed
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 Case study based Software Engineering Education using Open Source Tools
A Case study based Software Engineering Education using Open Source Tools Sowmya B J Dept. of CSE M. S. Ramaiah Institute of Technology [email protected] Srinidhi Hiriyannaiah Dept. of CSE M.S. Ramaiah
Génie Logiciel et Gestion de Projets. Evolution
Génie Logiciel et Gestion de Projets Evolution 1 Roadmap Evolution: definitions Re-engineering Legacy systems Reverse engineering Software Visualisation Re-engineering Patterns 2 Evolution: Definitions
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
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
AN EMPIRICAL REVIEW ON FACTORS AFFECTING REUSABILITY OF PROGRAMS IN SOFTWARE ENGINEERING
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
The Evolution of Mobile Apps: An Exploratory Study
The Evolution of Mobile Apps: An Exploratory Study Jack Zhang, Shikhar Sagar, and Emad Shihab Rochester Institute of Technology Department of Software Engineering Rochester, New York, USA, 14623 {jxz8072,
A Platform Independent Testing Tool for Automated Testing of Web Applications
A Platform Independent Testing Tool for Automated Testing of Web Applications December 10, 2009 Abstract Increasing complexity of web applications and their dependency on numerous web technologies has
Development/Maintenance/Reuse: Software Evolution in Product Lines
Development/Maintenance/Reuse: Software Evolution in Product Lines Stephen R. Schach Vanderbilt University, Nashville, TN, USA Amir Tomer RAFAEL, Haifa, Israel Abstract The evolution tree model is a two-dimensional
(BA122) Software Engineer s Workshop (SEW)
Training for the Business Analyst (BA122) Software Engineer s Workshop (SEW) Duration: 4 days CDUs (Continuing Development Units): 28 Description: A practical workshop covering the role of the Business-Systems
A Structured Methodology For Spreadsheet Modelling
A Structured Methodology For Spreadsheet Modelling ABSTRACT Brian Knight, David Chadwick, Kamalesen Rajalingham University of Greenwich, Information Integrity Research Centre, School of Computing and Mathematics,
An Object Oriented Role-based Access Control Model for Secure Domain Environments
International Journal of Network Security, Vol.4, No.1, PP.10 16, Jan. 2007 10 An Object Oriented -based Access Control Model for Secure Domain Environments Cungang Yang Department of Electrical and Computer
Web based legacy system componentization
MALARDALEN UNIVERSITY, SCHOOL OF INNOVATION, DESIGN AND ENGINEERING Web based legacy system componentization Research plan Josip Maras 1.10.2009 1. Research Area My research will be performed in the areas
The Bucharest Academy of Economic Studies, Romania E-mail: [email protected] E-mail: [email protected]
Paul Pocatilu 1 and Ctlin Boja 2 1) 2) The Bucharest Academy of Economic Studies, Romania E-mail: [email protected] E-mail: [email protected] Abstract The educational process is a complex service which
A Case Study of the Systems Engineering Process in Healthcare Informatics Quality Improvement. Systems Engineering. Ali M. Hodroj
A Case Study of the Systems Engineering Process in Healthcare Informatics Quality Improvement By Ali M. Hodroj Project Report submitted to the Faculty of the Maseeh School of Engineering and Computer Science
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
The Concern-Oriented Software Architecture Analysis Method
The Concern-Oriented Software Architecture Analysis Method Author: E-mail: Student number: Supervisor: Graduation committee members: Frank Scholten [email protected] s0002550 Dr. ir. Bedir Tekinerdoǧan
A Case Study in Integrated Quality Assurance for Performance Management Systems
A Case Study in Integrated Quality Assurance for Performance Management Systems Liam Peyton, Bo Zhan, Bernard Stepien School of Information Technology and Engineering, University of Ottawa, 800 King Edward
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
Card-Sorting: What You Need to Know about Analyzing and Interpreting Card Sorting Results
October 2008, Vol. 10 Issue 2 Volume 10 Issue 2 Past Issues A-Z List Usability News is a free web newsletter that is produced by the Software Usability Research Laboratory (SURL) at Wichita State University.
Prediction of Software Development Faults in PL/SQL Files using Neural Network Models
Prediction of Software Development Faults in PL/SQL Files using Neural Network Models Tong-Seng Quah, Mie Mie Thet Thwin School of Electrical & Electronic Engineering Nanyang Technological University [email protected]
Clarifying a vision on certification of MDA tools
SCIENTIFIC PAPERS, UNIVERSITY OF LATVIA, 2010. Vol. 757 COMPUTER SCIENCE AND INFORMATION TECHNOLOGIES 23 29 P. Clarifying a vision on certification of MDA tools Antons Cernickins Riga Technical University,
How To Test A Web Based Application Automatically
A General Framework for Testing Web-Based Applications Saeed Abrishami, Mohsen Kahani Computer Engineering Department, Ferdowsi University of Mashhad [email protected] r, [email protected] Abstract Software
The Complete Alphabet of Quality Software Systems: Conflicts and Compromises
Siakas Kerstin V., Berki Eleni, Georgiadou Elli, Sadler Chris (1997). The Complete Alphabet of Quality Software Systems: Conflicts & Compromises. Lt. Gen. J. S. Ahluwalia (Eds.) Total Quality Management
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
Software Engineering Practices in Jordan
Software Engineering Practices in Jordan Nuha El-Khalili Faculty of Information Technology, University of Petra, Amman, Jordan [email protected] Dima Damen Faculty of Information Technology, University
Processing and data collection of program structures in open source repositories
1 Processing and data collection of program structures in open source repositories JEAN PETRIĆ, TIHANA GALINAC GRBAC AND MARIO DUBRAVAC, University of Rijeka Software structure analysis with help of network
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 -
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]
Fault Analysis in Software with the Data Interaction of Classes
, pp.189-196 http://dx.doi.org/10.14257/ijsia.2015.9.9.17 Fault Analysis in Software with the Data Interaction of Classes Yan Xiaobo 1 and Wang Yichen 2 1 Science & Technology on Reliability & Environmental
MSE-201 SOFTWARE PROJECT MANAGEMENT
MSE-201 SOFTWARE PROJECT MANAGEMENT Unit-I Introduction to Software project Management: Software projects, Contract management and technical project management, Activities covered by software project management,
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
4. Multiagent Sys stems Design. Part 2: The PROMETHEUS methodology.
4. Multiagent Systems Design Part 2: Multiagent Syste ems (SMA-UPC) https://kemlg.upc.edu The PROMETHEUS methodology. Javier Vázquez-Salceda SMA-UPC Methodological Extensions to Object-Oriented Approaches
Java Technology in the Design and Implementation of Web Applications
Java Technology in the Design and Implementation of Web Applications Kavindra Kumar Singh School of Computer and Systems Sciences Jaipur National University Jaipur Abstract: This paper reviews the development
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
Does the Act of Refactoring Really Make Code Simpler? A Preliminary Study
Does the Act of Refactoring Really Make Code Simpler? A Preliminary Study Francisco Zigmund Sokol 1, Mauricio Finavaro Aniche 1, Marco Aurélio Gerosa 1 1 Department of Computer Science University of São
Certified Tester. Advanced Level Overview
Version 2012 Copyright Notice This document may be copied in its entirety, or extracts made, if the source is acknowledged. Copyright (hereinafter called ISTQB ). Advanced Level Working Group: Mike Smith
IMPROVING JAVA SOFTWARE THROUGH PACKAGE STRUCTURE ANALYSIS
IMPROVING JAVA SOFTWARE THROUGH PACKAGE STRUCTURE ANALYSIS Edwin Hautus Compuware Europe P.O. Box 12933 The Netherlands [email protected] Abstract Packages are an important mechanism to decompose
Lund, November 16, 2015. Tihana Galinac Grbac University of Rijeka
Lund, November 16, 2015. Tihana Galinac Grbac University of Rijeka Motivation New development trends (IoT, service compositions) Quality of Service/Experience Demands Software (Development) Technologies
A Comparative Study of Software Quality Models
A Comparative Study of Software Quality Models Suman 1, Manoj Wadhwa 2 CSE Department, M.D.U. Rohtak 1 M.Tech, 2 Professor &HOD of CSE Department Echelon Institute of Technology, Faridabad 121004,India
Modeling the User Interface of Web Applications with UML
Modeling the User Interface of Web Applications with UML Rolf Hennicker,Nora Koch,2 Institute of Computer Science Ludwig-Maximilians-University Munich Oettingenstr. 67 80538 München, Germany {kochn,hennicke}@informatik.uni-muenchen.de
Measuring Software Product Quality
Measuring Software Product Quality Eric Bouwers June 17, 2014 T +31 20 314 0950 [email protected] www.sig.eu Software Improvement Group Who are we? Highly specialized advisory company for cost, quality and risks
Module 1. Introduction to Software Engineering. Version 2 CSE IIT, Kharagpur
Module 1 Introduction to Software Engineering Lesson 2 Structured Programming Specific Instructional Objectives At the end of this lesson the student will be able to: Identify the important features of
