BCS HIGHER EDUCATION QUALIFICATIONS Level 6 Professional Graduate Diploma in IT. March 2013 EXAMINERS REPORT. Software Engineering 2

Size: px
Start display at page:

Download "BCS HIGHER EDUCATION QUALIFICATIONS Level 6 Professional Graduate Diploma in IT. March 2013 EXAMINERS REPORT. Software Engineering 2"

Transcription

1 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 the summer examinations of the previous year. The following issues (identified in previous examiner reports) are once again repeated as areas that can affect the performance of candidates positively: 1. Coverage of the syllabus. Centres should: encourage candidates to adopt a staged approached to their learning, by completing the Software Engineering 1 module, before attempting Software Engineering 2; and provide more training in aspects of problem solving using UML, and software measurement; 2. Subject awareness. A successful learner should provide more breadth in responses given to all parts of the question by reading more widely publications within the profession as well as recommended text; 3. Examination techniques. Some candidates answered too many questions resulting in very shallow answers ; or too few, which resulted in too detailed an answer but insufficient to compensate for the marks lost by not completing a third question; 4. Answers should be legible, well structured and formatted. It is important that candidate responses to questions are: comprehensible, exhibit breadth and depth in knowledge; applied to the scenario presented; and have relevance and appropriateness to the questions and rubric of the paper itself.

2 Question 1 In your role as a software engineer, you have been given the task of introducing software reuse for existing and new software development. a) Write a report that gives an overview of software reuse and discusses how various approaches to reuse might handle legacy software and new application developments. A good answer should produce: A structured report with appropriate headings, including introduction and conclusion; Introduction that defines key concepts, gives an overview of software reuse, and highlight the progress made in its adoption. For example, the transition from original to reuse software development has only occurred within the last decade, to lower production and maintenance costs. Overview The software units that can be re-used include application: the entire application through reconfiguration for a target environment, or integration in an entirely new application; component: typically sub-systems with well-defined interfaces for easy assembly; Object or function: an entity conforming to the Single Responsibility Principle is common to standard libraries, characterised by their longevity. Body of report that discusses reuse approaches such as: Possible approaches that could be discussed include design patterns, componentbased development, application frameworks, and service-oriented systems. New applications can be developed through and for reuse. The latter can result in rapid development of applications with desired behaviour and robust structures making use of resilient design patterns and tried and tested components and frameworks. Design patterns are generic abstractions occurring across a wide set of applications which can provide a foundation for reliable design structures and interactions for new software developments. At a higher level, application frameworks (e.g MVC) are extendable generic structures for creating more specific applications. However, the prohibitive redevelopment cost of legacy systems means that such applications can only become reusable very quickly by means of wrapping. This involves defining a set of interfaces through which new software components can pass parameters to and obtain results from the existing legacy system. Conclusion that draws attention to the progress made to date though OO methods, tools, and languages. However, some issues regarding effective and productive reuse still remain: in particular, easy-to-use and integrated CASE toolsets; and the maintenance of a readily available and user-friendly reuse library. (17 marks)

3 b) Consider the problem of software quality and programmer productivity, and explain whether a software crisis exists today. How has reuse contributed to the problem or the solution? Justify your answer. A good answer needs to show some awareness of what is meant by a software crisis, identifying such things as programmer productivity, and software quality as key issues of the past and perhaps of the present. It can be argued that reuse has contributed to the solution through modern tools that have made developers more productive and the widespread adoption and promotion of good development practice (OO) and thus standards (like UML) have significantly improved quality and reduced the application backlog. However, it can also be said that the backlogs still persist, and reuse is part of the problem, especially as many of today s applications lack longevity because of poor engineering quality, and inability to adapt to rapidly changing requirements and technology. Thus, the proliferation of application and components created in such an environment without a universally accepted standard makes it difficult to identify the right components amongst many alternatives, resulting in the not-invented here syndrome. (8 marks) Examiner s Guidance Notes: This question assesses a candidate s knowledge and awareness of software reuse and its impact on software quality and programmer productivity. This was the most popular question and whilst many appear to understand the concept of reuse, a significant number were unable to recognise its potential effect on productivity and quality.

4 Question 2 The managing director of a small financial services company recently attended a UML development seminar and has asked you to: a) Define and explain the differences between the following UML terms: (i) Association, aggregation, and composition; (ii) Invariant and pre- and post- conditions A good answer should: (i) Define UML Association as the structural relationship that exists between two self-contained objects (classifiers). {The answer can be illustrated with a simple diagram with an association link having two ends that can be labelled with a name (a verb or phrase), a multiplicity (or repetition), and navigability (directional arrow}; Aggregation is a specialized form of Association that represents the whole-part dependency (e.g parent-child) relationship between the aggregate (whole) and a component part. However, the component part can remain should the aggregate be removed. {The answer can be illustrated with one end of the association link having a clear diamond}; Composition as a specialized form of Aggregation in which the component part cannot exist independently of the whole (e.g the deletion of the parent will also result in the deletion of the child object): {the answer can be illustrated with one end of the association link having a filled diamond}; (ii) Recognise that the named terms are assertions and therefore, represent statement that should never be false; Thus, an invariant is a statement about a class such that for all instances of that class, a said operation invoked on it will always be true; similarly, a pre-condition is a statement about the prevailing system state that needs to be true before the performance of a given operation; whilst post-condition is a true statement about the change in conditions resulting from the execution of the operation. (10 marks) b) Use UML notation to demonstrate the modelling of a customer account, and deposit and withdrawal services, paying particular attention to such things as integrity constraints, and the dependency relationship. A good answer would typically present an outline model of a financial services application using Use Case or Class diagrams. In the case of the class diagram: - the key classes would include: Account and Customer, where the specification of the former s attributes would include accountnumber, balance, and openaccount(), deposit() and withdrawal() methods. Similarly, the Customer class may include personaldetails attributes, and Deposit_toSavingsAccount() and withdraw_fromcurrentaccount() methods. - The dependency relationship could show sub-classes of accounts (e.g savings and current) derived from Account. But, more importantly, the association link between Account and Customer is labelled as follows:

5 Account has one Customer {Aggregate type association} Customer has at least one Account {simple type association} - An example of Integrity constraints such as Withdrawal constraints: Precondition: wamount <= cbalancet - The withdrawal amount <= the Current balance Postcondition: cbalancet+1 < cbalancet The current balance < the previous balance (9 marks) c) Briefly discuss whether the continuing development of UML as an open standard will result in the creation of tools to facilitate reverse engineering and, more significantly, able to automatically generate production quality code from such designs. Justify your answer. A good answer should highlight the proliferation of tools able to generate code from designs based on UML in addition to producing UML designs from object oriented programming language source code (e.g. the Eclipse development environment). However, it is a question of whether a design in UML represent the blueprint for production and therefore, cannot be changed; or the means by which one gains a better understanding of the requirements and explore potential solutions before committing designs to production style toolkits. It can be argued that the adoption of UML as a blueprint language is a deviation from its original purpose in design, and may result in production systems that are excessive consumers of resources, and to which insufficient time was given to the design phase. Examiner s Guidance Notes: (6 marks) This question proved to be the least popular amongst candidates and had the second lowest pass rate (35%). It was clear from the answers submitted, that many candidates in their answer to part a) had little knowledge or awareness of the conceptual definition and characteristics of the terms listed, and experience of open source development; and in part b) lacked experience of problem-solving with UML. Finally, many candidates did not appreciate the potential and current developments surrounding UML products for generating code and application software from design documents.

6 Question 3 a) Distinguish between software process metrics and software product metrics. A good answer should see software product metrics as measures of the software product; and software process metrics are measures of software development process. For quality purposes, product metrics might include such things as usability, efficiency, reliability, and portability. The size of the software can be considered as a measure of the software product itself. However, these become process metrics, when considered within the context of the development process as indicators of the effort required to build the system. (5 marks) b) Write a brief overview of the various forms of software process metrics available today, and discuss how they might be usefully employed from the initial project stages, through to the commissioning of a new system. Illustrate your answers with examples. A good answer should: Highlight the importance of high quality process (input) that can result in a high quality product (output). Metrics facilitate prediction, costing, and management decision-making on the process, and expected products; In requirements analysis and specification, metrics can help to highlight critical aspects of the expected product, its quality and subsequent maintenance, based on available process and resource inputs. For example, a simple function point analysis may highlight the scale of the development and likelihood of delivery within timescale such that the stakeholders are asked to revisit the requirements, re scope and cost the system; In the design phase process metrics can highlight complexity, productivity, and engineering build quality. For example, the McCabe complexity metric as an indicator of complexity can result in design decisions about the process of decomposition, and subsequent testing and maintenance processes. In the implementation and testing phase metrics can verify and predict operational performance, configuration and maintenance requirements. For example, a metric for testing in terms of defects identified per 100 modules inspected, may cause stakeholders to release the product early, in the sure knowledge of the number and timing of patches that would follow in terms of maintenance. In the maintenance phase, process metrics are concerned with change, their frequency, the sub-systems affected, and the predicted cost and expected system lifetime. Process metrics such as these can lead to decisions to delay certain requests, or system decommissioning. (10 marks)

7 c) Explain what is meant by software product complexity, and demonstrate how measures of module coupling, cohesion, and size can help the engineer monitor the build quality of software. A good answer should Recognize and explain complexity at different levels in terms of structure (e.g graphs, trees, lists), cognition (e.g abstraction, induction, recursive processes), and magnitude (scale and size beyond what is accepted as manageable). Coupling is concerned with the degree of connectivity between the modules of a system. Typically, with good engineering practice most modules are loosely coupled via their interfaces such that there are no side effects resulting from changes in implementation. Nevertheless, many modules are coupled via their parameter list, and the greater the number of parameters exchanged the more likely that errors will arise from missing or incorrect type parameters; Cohesion is concerned with the internal strength where each module exhibits the single responsibility principle. For example, using a given value parameter, each statement will act upon the intermediate result of the previous statement until the result is produced. Thus, increasing values for this metric would indicate that the module is in danger of violating the single responsibility principle, resulting in the likelihood of performance inefficiencies, and defects when change is affected. Module size is concerned with the lines of code, internal data structures, and components. For the engineer the optimal module size can get the best performance from the target platform. However, that same value for the maintenance team may be indicating poor comprehension or understandability. (10 marks) Examiner s Guidance Notes: This question proved to be the second most unpopular amongst candidates and had the lowest pass rate (34%). It was clear from the answers submitted, that many candidates in their answer to part a) and b) were lacking in knowledge of software metrics, both product and process. Even with the concept of cohesion and coupling (in part c), candidates gave chapter and verse responses on their different types, but were not able to see it within the context of a software complexity or quality metric. Question 4 a) Define what is meant by reverse engineering and re-engineering of a software system, distinguish between these two processes, and explain how these two processes are related. (5 marks) b) As a software engineer, you have been given the task of reverse engineering and reengineering a large legacy system written in languages which are no longer widely used in modern development with out-of-date and incomplete documentation. Give an assessment of the problems likely to be encountered in this task. Explain how you would go about the reverse engineering of this system. Outline the techniques and tools that you could use, and the results that you would expect to produce. (15 marks)

8 c) The practice of re-factoring in agile development can be considered as a form of continuous reverse and re-engineering. Discuss the validity of this claim. (5 marks) A good answer should cover the following: a) Reverse engineering of software is the analysis of existing legacy software artifacts to recreate or discover higher level abstractions of the software; it usually involves analyzing the source code of a system to extract information about its organization (e.g. architecture) and its functionality (high level design). Re-engineering of software is the process of taking a legacy system and producing a re-structured and modularised version of the system through a series of automated and manual transformations. It does not alter the functionality of the original software; it is concerned with improving its quality, its comprehensibility and future maintainability. These two processes are related as follows: it is not possible to re-engineering software without a good understanding of the software and its documentation, where the documentation is missing or out-of-date, such understanding must be recreated through reverse engineering and hence reverse engineering usually precedes re-engineering. In fact, reverse engineering is often seen as the first step in the re-engineering process. b) Problems likely to be encountered are as follows: 1. As the system is written in languages no longer widely used it may be necessary to convert it through automated and manual transformations to a more modern programming language so that in the future it will be easier to find knowledgeable software engineers to maintain the system; however, it be difficult to software engineering with adequate knowledge of the old programming languages to undertake the necessary manual transformation work.. 2. To aid the re-engineering process and assist future maintainers, redocumentation may be desirable; this is likely to prove difficult in view of the inaccurate and missing documentation and as this is an old system, the staff involved in its development may no longer be available. 3. Depending on the versions of the old programming languages in which the system was originally written, it may prove difficult to find any translators that will convert the old source code into more modern languages. 4. Data re-structuring may be needed if data structures are altered during the re-engineering of software. 5. If the re-engineering involves moving from a procedural programming language to an object oriented programming language, significant work may be involved and there may be little potential for automation. The process of re-engineering involves the following steps: 1. Source code analysis and conversion 2. Documentation Recovery and Re-documentation 3. Program re-structuring 4. Program modularization 5. Data re-structuring Techniques and tools and results produced: 1. Source code analysis and conversion: The old source code is analysed and and converted to the new language using source code analysers and old-code to new-code converters. This process is likely to be semiautomatic and results in program in a more modern version of the old language or a program in a completely new modern language.

9 2. Documentation recovery and re-documentation:: code analysis tools can assist with this as well as automated source code documentation tools; results in improved and more comprehensible documentation to assist reengineering and future maintenance. 3. Program re-structuring: automated re-structuring tools can be applied once the code has been converted to the new language. The result is more maintainable software with an improved structure and a more modern architecture may be introduced. 4. Program Modularisation: Re-factoring techniques and clone detection tools may be used. The individual modules/subsystems are grouped together and any redundancy is removed. 5. Data re-structuring: To transform data, it is likely that specific data transformation tools will have to be developed using lexical analysis techniques. c) Refactoring as practiced in agile development can be considered as a form of continuous reverse and re-engineering as it aims to improve the structure of the software and also to identify common replicated components and replace them with a single component and to eliminate complexity thus making the system easier to change. As agile developers embrace change, they risk weakening the software structure through continuous change and thus by Lehamn s law of increasing complexity must devote extra resources to preserving and simplifying the structure. However, agile practice does not necessary involve re-documentation, nor does it involve transformation of code from one language to another or to a modern language. It would be more accurate to say that refactoring is form of re-engineering. Examiner s Guidance Notes: This question focused on students understanding of reverse engineering and reengineering of software. Many students attempted this question successfully although only a very few students were able to achieve full marks for each part. The weakest answers were to the final part of the question where answers failed to demonstrate evidence of critical thinking. Question 4 a) Explain how as a software project manager, you would estimate and measure the software development productivity of your team. (5 marks) b) Outline five factors that as a software project manager you would need to consider when selecting and building a project team to undertake a new development project. In the case of each factor, discuss relevant issues that need to be taken into consideration to lower any risks. (15 marks) c) A software cost estimation model is an empirical model derived from data from many software projects. These have been widely used and evaluated. Discuss the relevance of software cost estimation models to an agile software project development team in terms of advantages and disadvantages. (5 marks)

10 A good answer should cover the following: a) The ability to accurately estimate the productivity of a software team relies of having some measurements of the team members past productivity in comparable projects although some estimates can be made of the basis of industry wide measurements of the average of software developers productivity. Productivity can be measured in lines of code produced over a fixed period of time. Other activities can also be measured, e.g. lines of documentation written, tests carried out, bugs resolved, etc. The complexity of work to be undertaken also needs to be considered as does the level of experience and skill set of the team. Where a team has worked together on a number of projects, it may be more helpful to consider them as a single unit. b) Factor Expertise and experience needed for project, especially specific domain expertise Compatibility of team members and their skills Staff Availability and Duration of the project Staff Personalities and attitude to team working Size of team Relevant Issues to lower risk Professional experience of team members, is external recruitment required? And how long will it take to recruit? Recruit new staff in good time Past experience of working together already, complementary skill sets, is training in specialist skills required Consider when staff will be needed and the potential to schedule work on project flexibly, Experience of team working and Team building exercises if new team, clear roles and responsibilities for each team member Good communication channels, use of sub-teams, open and transparent management, regular team meetings c) The COCOMO model may not appear to be directly relevant to a team practicing Agile development with the Agile approach s emphasis on people not process in contrast to the planned based approach which emphasizes the use of well defined, standardised and managed processes. Indeed the first version of COCOMO was based on data from industrial projects mainly in the defence and aerospace domains at a time when Agile development was not widely practised. The later COCOMO II developed in 2000 does address prototype development through its application-composition sub-model and could be applied in the case of Agile development. It estimates software size on the basis of application points which could be related to specific activities undertaken by the agile developers which result measurable outputs, e.g. lines of code, story boards, etc. Cost estimates would help define the project cost and schedule, inform investment decisions and assess any changes in technological solutions; however, the measures that needs to be collected may not be possible to obtain from the agile development practitioners in order to give credibility to their application.

11 Examiner s Guidance Notes: This question concerned software productivity and software project management. Many students attempted this question successfully although only a few achieved full marks. Many students attempting this question failed to address the estimation of productivity in part a) adequately. Most students were able to outline factors in part b), but many failed to discuss issues related to lowering risks. In answering part c), some students mentioned COCOMO as a cost model or were able to state what agile software development is, but they often failed to make any connection between these. Very few demonstrated knowledge of COCOMO developments.

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT SOFTWARE ENGINEERING 2

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT SOFTWARE ENGINEERING 2 BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT SOFTWARE ENGINEERING 2 EXAMINERS REPORT Friday 2 nd October 2015 Answer any THREE

More information

Software Engineering 1

Software Engineering 1 THE BCS PROFESSIONAL EXAMINATIONS Diploma April 2006 EXAMINERS REPORT Software Engineering 1 General Comments Most of the scripts produced by candidates this year were well structured and readable, showing

More information

Chapter 24 - Quality Management. Lecture 1. Chapter 24 Quality management

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

More information

Software Engineering. So(ware Evolu1on

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

More information

Chapter 9 Software Evolution

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

More information

D6 INFORMATION SYSTEMS DEVELOPMENT. SOLUTIONS & MARKING SCHEME. June 2013

D6 INFORMATION SYSTEMS DEVELOPMENT. SOLUTIONS & MARKING SCHEME. June 2013 D6 INFORMATION SYSTEMS DEVELOPMENT. SOLUTIONS & MARKING SCHEME. June 2013 The purpose of these questions is to establish that the students understand the basic ideas that underpin the course. The answers

More information

Manufacturing View. User View. Product View. User View Models. Product View Models

Manufacturing View. User View. Product View. User View Models. Product View Models Why SQA Activities Pay Off? Software Quality & Metrics Sources: 1. Roger S. Pressman, Software Engineering A Practitioner s Approach, 5 th Edition, ISBN 0-07- 365578-3, McGraw-Hill, 2001 (Chapters 8 &

More information

Basic Trends of Modern Software Development

Basic Trends of Modern Software Development DITF LDI Lietišķo datorsistēmu programmatūras profesora grupa e-business Solutions Basic Trends of Modern Software Development 2 3 Software Engineering FAQ What is software engineering? An engineering

More information

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 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

More information

Contents. Introduction and System Engineering 1. Introduction 2. Software Process and Methodology 16. System Engineering 53

Contents. Introduction and System Engineering 1. Introduction 2. Software Process and Methodology 16. System Engineering 53 Preface xvi Part I Introduction and System Engineering 1 Chapter 1 Introduction 2 1.1 What Is Software Engineering? 2 1.2 Why Software Engineering? 3 1.3 Software Life-Cycle Activities 4 1.3.1 Software

More information

Karunya University Dept. of Information Technology

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

More information

A Model for Component Based E-governance Software Systems

A Model for Component Based E-governance Software Systems A Model for Component Based E-governance Software Systems A.SHRABAN KUMAR 1, G.JAYARAO 2,B.SHANKAR NAYAK 3, KBKS. DURGA 4 A.ESWARA RAO 5 1,2,3,4 Associate Professor CSE, St.MARTIN S ENGINEERING COLLEGE,

More information

Quality Management. Objectives

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

More information

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 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

More information

Decomposition into Parts. Software Engineering, Lecture 4. Data and Function Cohesion. Allocation of Functions and Data. Component Interfaces

Decomposition into Parts. Software Engineering, Lecture 4. Data and Function Cohesion. Allocation of Functions and Data. Component Interfaces Software Engineering, Lecture 4 Decomposition into suitable parts Cross cutting concerns Design patterns I will also give an example scenario that you are supposed to analyse and make synthesis from The

More information

Surveying and evaluating tools for managing processes for software intensive systems

Surveying and evaluating tools for managing processes for software intensive systems Master Thesis in Software Engineering 30 Credits, Advanced Level Surveying and evaluating tools for managing processes for software intensive systems Anuradha Suryadevara IDT Mälardalen University, ABB

More information

Service Oriented Architecture

Service Oriented Architecture Service Oriented Architecture Charlie Abela Department of Artificial Intelligence charlie.abela@um.edu.mt Last Lecture Web Ontology Language Problems? CSA 3210 Service Oriented Architecture 2 Lecture Outline

More information

Quality Management. Objectives. Topics covered. Process and product quality Quality assurance and standards Quality planning Quality control

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

More information

Chapter 8 Software Testing

Chapter 8 Software Testing Chapter 8 Software Testing Summary 1 Topics covered Development testing Test-driven development Release testing User testing 2 Program testing Testing is intended to show that a program does what it is

More information

41. How Should Services Be Identified or Specified to Maximize Reuse?

41. How Should Services Be Identified or Specified to Maximize Reuse? CHAPTER 5 METHODS 103 41. How Should Services Be Identified or Specified to Maximize Reuse? A key tenet of understanding SOA is the focus on getting the organization to reuse versus a focus on the programmer

More information

Baseline Code Analysis Using McCabe IQ

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

More information

A Structured Methodology For Spreadsheet Modelling

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,

More information

BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 5 Diploma in IT. September 2013 EXAMINERS REPORT

BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 5 Diploma in IT. September 2013 EXAMINERS REPORT BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 5 Diploma in IT September 2013 EXAMINERS REPORT Systems Analysis and Design Section A General Comments Candidates in general

More information

Modernized and Maintainable Code. Frank Weil, Ph.D. UniqueSoft, LLC

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

More information

Software development life cycle. Software Engineering - II ITNP92 - Object Oriented Software Design. Requirements. Requirements. Dr Andrea Bracciali

Software development life cycle. Software Engineering - II ITNP92 - Object Oriented Software Design. Requirements. Requirements. Dr Andrea Bracciali Software development life cycle Software life cycle: Software Engineering - II ITNP92 - Object Oriented Software Design Dr Andrea Bracciali Module Co-ordinator 4B86 abb@cs.stir.ac.uk Spring 2014 (elicitation)

More information

Exhibit F. VA-130620-CAI - Staff Aug Job Titles and Descriptions Effective 2015

Exhibit F. VA-130620-CAI - Staff Aug Job Titles and Descriptions Effective 2015 Applications... 3 1. Programmer Analyst... 3 2. Programmer... 5 3. Software Test Analyst... 6 4. Technical Writer... 9 5. Business Analyst... 10 6. System Analyst... 12 7. Software Solutions Architect...

More information

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. 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

More information

Case studies: Outline. Requirement Engineering. Case Study: Automated Banking System. UML and Case Studies ITNP090 - Object Oriented Software Design

Case studies: Outline. Requirement Engineering. Case Study: Automated Banking System. UML and Case Studies ITNP090 - Object Oriented Software Design I. Automated Banking System Case studies: Outline Requirements Engineering: OO and incremental software development 1. case study: withdraw money a. use cases b. identifying class/object (class diagram)

More information

CSC408H Lecture Notes

CSC408H Lecture Notes CSC408H Lecture Notes These lecture notes are provided for the personal use of students taking Software Engineering course in the Summer term 2005 at the University of Toronto. Copying for purposes other

More information

Parsing Technology and its role in Legacy Modernization. A Metaware White Paper

Parsing Technology and its role in Legacy Modernization. A Metaware White Paper Parsing Technology and its role in Legacy Modernization A Metaware White Paper 1 INTRODUCTION In the two last decades there has been an explosion of interest in software tools that can automate key tasks

More information

Agile So)ware Development

Agile So)ware Development Software Engineering Agile So)ware Development 1 Rapid software development Rapid development and delivery is now often the most important requirement for software systems Businesses operate in a fast

More information

Quality Management. Managing the quality of the software process and products

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

More information

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 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

More information

Management. Project. Software. Ashfaque Ahmed. A Process-Driven Approach. CRC Press. Taylor Si Francis Group Boca Raton London New York

Management. Project. Software. Ashfaque Ahmed. A Process-Driven Approach. CRC Press. Taylor Si Francis Group Boca Raton London New York Software Project Management A Process-Driven Approach Ashfaque Ahmed CRC Press Taylor Si Francis Group Boca Raton London New York CRC Press is an imprint of the Taylor St Francis Croup, an Informa business

More information

11 Tips to make the requirements definition process more effective and results more usable

11 Tips to make the requirements definition process more effective and results more usable 1 11 Tips to make the s definition process more effective and results more usable This article discusses what I believe are the key techniques for making s definition process repeatable from project to

More information

Software Engineering. Software Reuse. Based on Software Engineering, 7 th Edition by Ian Sommerville

Software Engineering. Software Reuse. Based on Software Engineering, 7 th Edition by Ian Sommerville Software Engineering Software Reuse Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To explain the benefits of software reuse and some reuse problems To discuss several different

More information

1.1 The Nature of Software... Object-Oriented Software Engineering Practical Software Development using UML and Java. The Nature of Software...

1.1 The Nature of Software... Object-Oriented Software Engineering Practical Software Development using UML and Java. The Nature of Software... 1.1 The Nature of Software... Object-Oriented Software Engineering Practical Software Development using UML and Java Chapter 1: Software and Software Engineering Software is intangible Hard to understand

More information

Internal Verification

Internal Verification GUIDE TO INTERNAL VERIFICATION: (for Non-NVQ qualifications): Process Procedures and Review This guide should be used for those programmes where there is a need to provide candidates with a series of assessment

More information

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

More information

Software Requirements, Third Edition

Software Requirements, Third Edition j Microsoft Software Requirements, Third Edition Karl Wiegers and Joy Beatty Contents Introduction Acknowledgments xxv xxxi PART I SOFTWARE REQUIREMENTS: WHAT, WHY, AND WHO Chapter 1 The essential software

More information

Design by Contract beyond class modelling

Design by Contract beyond class modelling Design by Contract beyond class modelling Introduction Design by Contract (DbC) or Programming by Contract is an approach to designing software. It says that designers should define precise and verifiable

More information

What is a life cycle model?

What is a life cycle model? What is a life cycle model? Framework under which a software product is going to be developed. Defines the phases that the product under development will go through. Identifies activities involved in each

More information

BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 4 Certificate in IT. September 2013 EXAMINERS REPORT

BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 4 Certificate in IT. September 2013 EXAMINERS REPORT BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 4 Certificate in IT September 2013 EXAMINERS REPORT Information Systems General comments on candidates' performance There

More information

Software Engineering/Courses Description Introduction to Software Engineering Credit Hours: 3 Prerequisite: 0306211(Computer Programming 2).

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

More information

Keywords: SQA,Black Box Testing( BBT), White Box testing(wbt).

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

More information

CREDENTIALS & CERTIFICATIONS 2015

CREDENTIALS & CERTIFICATIONS 2015 THE COMMUNITY FOR TECHNOLOGY LEADERS www.computer.org CREDENTIALS & CERTIFICATIONS 2015 KEYS TO PROFESSIONAL SUCCESS CONTENTS SWEBOK KNOWLEDGE AREA CERTIFICATES Software Requirements 3 Software Design

More information

Procurement Programmes & Projects P3M3 v2.1 Self-Assessment Instructions and Questionnaire. P3M3 Project Management Self-Assessment

Procurement Programmes & Projects P3M3 v2.1 Self-Assessment Instructions and Questionnaire. P3M3 Project Management Self-Assessment Procurement Programmes & Projects P3M3 v2.1 Self-Assessment Instructions and Questionnaire P3M3 Project Management Self-Assessment Contents Introduction 3 User Guidance 4 P3M3 Self-Assessment Questionnaire

More information

Systems Integration: Co C mp m onent- t bas a e s d s o s ftw ft a w r a e r e ngin i eeri r n i g

Systems Integration: Co C mp m onent- t bas a e s d s o s ftw ft a w r a e r e ngin i eeri r n i g Systems Integration: Component-based software engineering Objectives To explain that CBSE is concerned with developing standardised components and composing these into applications To describe components

More information

SOA: The missing link between Enterprise Architecture and Solution Architecture

SOA: The missing link between Enterprise Architecture and Solution Architecture SOA: The missing link between Enterprise Architecture and Solution Architecture Jaidip Banerjee and Sohel Aziz Enterprise Architecture (EA) is increasingly being acknowledged as the way to maximize existing

More information

Introduction to software architecture

Introduction to software architecture Learning Unit 1 Introduction to software architecture Contents Introduction............................................... 7 1.1 What is software architecture?................................. 7 1.1.1

More information

THE BCS PROFESSIONAL EXAMINATIONS Diploma. April 2006 EXAMINERS REPORT. Systems Design

THE BCS PROFESSIONAL EXAMINATIONS Diploma. April 2006 EXAMINERS REPORT. Systems Design THE BCS PROFESSIONAL EXAMINATIONS Diploma April 2006 EXAMINERS REPORT Systems Design Question. a) Write a BRIEF explanation of the purpose of TWO of the following UML diagrams as used in Object- Oriented

More information

Process Models and Metrics

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

More information

TRADITIONAL VS MODERN SOFTWARE ENGINEERING MODELS: A REVIEW

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

More information

Use Cases. Massimo Felici. Massimo Felici Use Cases c 2004 2011

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

More information

Introducing Formal Methods. Software Engineering and Formal Methods

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

More information

How To Understand Software Engineering

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

More information

CDC UNIFIED PROCESS JOB AID

CDC UNIFIED PROCESS JOB AID CDC UNIFIED PROCESS JOB AID Independent Verification & Validation Activities Document Purpose This Job Aid is a brief document listing the items to be noted, checked, remembered, and delivered when completing

More information

Co-Creation of Models and Metamodels for Enterprise. Architecture Projects.

Co-Creation of Models and Metamodels for Enterprise. Architecture Projects. Co-Creation of Models and Metamodels for Enterprise Architecture Projects Paola Gómez pa.gomez398@uniandes.edu.co Hector Florez ha.florez39@uniandes.edu.co ABSTRACT The linguistic conformance and the ontological

More information

Evaluating Data Warehousing Methodologies: Objectives and Criteria

Evaluating Data Warehousing Methodologies: Objectives and Criteria Evaluating Data Warehousing Methodologies: Objectives and Criteria by Dr. James Thomann and David L. Wells With each new technical discipline, Information Technology (IT) practitioners seek guidance for

More information

COURSE CODE : 4072 COURSE CATEGORY : A PERIODS / WEEK : 4 PERIODS / SEMESTER : 72 CREDITS : 4

COURSE CODE : 4072 COURSE CATEGORY : A PERIODS / WEEK : 4 PERIODS / SEMESTER : 72 CREDITS : 4 COURSE TITLE : SOFTWARE ENGINEERING COURSE CODE : 4072 COURSE CATEGORY : A PERIODS / WEEK : 4 PERIODS / SEMESTER : 72 CREDITS : 4 TIME SCHEDULE MODULE TOPICS PERIODS 1 Software engineering discipline evolution

More information

Automatic Generation of Consistency-Preserving Edit Operations for MDE Tools

Automatic Generation of Consistency-Preserving Edit Operations for MDE Tools Automatic Generation of Consistency-Preserving Edit Operations for MDE Tools Michaela Rindt, Timo Kehrer, Udo Kelter Software Engineering Group University of Siegen {mrindt,kehrer,kelter}@informatik.uni-siegen.de

More information

Software Development in the Large!

Software Development in the Large! Software Development in the Large! Peter Eeles Executive IT Architect, IBM peter.eeles@uk.ibm.com IBM Rational Software Development Conference 2007 2007 IBM Corporation Agenda IBM Rational Software Development

More information

LEVEL 5. Advanced Diploma in Purchasing and Supply. Senior Assessor s Report. July 2012. Risk Management and Supply Chain Vulnerability L5-02

LEVEL 5. Advanced Diploma in Purchasing and Supply. Senior Assessor s Report. July 2012. Risk Management and Supply Chain Vulnerability L5-02 LEVEL 5 Advanced Diploma in Purchasing and Supply Risk Management and Supply Chain Vulnerability L5-02 Senior Assessor s Report July 2012 L5-02 Senior Assessor Report July 2012 FV 1/8 SECTION A Candidates

More information

Digital Industries Trailblazer Apprenticeship. Software Developer - Occupational Brief

Digital Industries Trailblazer Apprenticeship. Software Developer - Occupational Brief Digital Industries Trailblazer Apprenticeship Software Developer - Occupational Brief Table of Contents Contents 1 Software Developer Trailblazer Apprenticeship Introduction... 1 2 Software Developer Trailblazer

More information

Data Modeling Basics

Data Modeling Basics Information Technology Standard Commonwealth of Pennsylvania Governor's Office of Administration/Office for Information Technology STD Number: STD-INF003B STD Title: Data Modeling Basics Issued by: Deputy

More information

Swirl. Multiplayer Gaming Simplified. CS4512 Systems Analysis and Design. Assignment 1 2010. Marque Browne 0814547. Manuel Honegger - 0837997

Swirl. Multiplayer Gaming Simplified. CS4512 Systems Analysis and Design. Assignment 1 2010. Marque Browne 0814547. Manuel Honegger - 0837997 1 Swirl Multiplayer Gaming Simplified CS4512 Systems Analysis and Design Assignment 1 2010 Marque Browne 0814547 Manuel Honegger - 0837997 Kieran O' Brien 0866946 2 BLANK MARKING SCHEME 3 TABLE OF CONTENTS

More information

All available Global Online MBA routes have a set of core modules required to be completed in order to achieve an MBA.

All available Global Online MBA routes have a set of core modules required to be completed in order to achieve an MBA. All available Global Online MBA routes have a set of core modules required to be completed in order to achieve an MBA. Those modules are: Building High Performance Organisations Management and Organisational

More information

TECHNICAL SPECIFICATION: LEGISLATION EXECUTING CLOUD SERVICES

TECHNICAL SPECIFICATION: LEGISLATION EXECUTING CLOUD SERVICES REALIZATION OF A RESEARCH AND DEVELOPMENT PROJECT (PRE-COMMERCIAL PROCUREMENT) ON CLOUD FOR EUROPE TECHNICAL SPECIFICATION: LEGISLATION EXECUTING CLOUD SERVICES ANNEX IV (D) TO THE CONTRACT NOTICE TENDER

More information

Cleveland College of Art & Design BA (Hons) Fashion Enterprise Programme Handbook 2013-2014 1

Cleveland College of Art & Design BA (Hons) Fashion Enterprise Programme Handbook 2013-2014 1 Cleveland College of Art & Design BA (Hons) Fashion Enterprise Programme Handbook 2013-2014 1 BA (Hons) Fashion Enterprise Programme Handbook 2013-2014 Your Programme Handbook provides you with a range

More information

Software Engineering. Software Engineering. Component-Based. Based on Software Engineering, 7 th Edition by Ian Sommerville

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

More information

Software Engineering Question Bank

Software Engineering Question Bank Software Engineering Question Bank 1) What is Software Development Life Cycle? (SDLC) System Development Life Cycle (SDLC) is the overall process of developing information systems through a multi-step

More information

Autonomic computing: strengthening manageability for SOA implementations

Autonomic computing: strengthening manageability for SOA implementations Autonomic computing Executive brief Autonomic computing: strengthening manageability for SOA implementations December 2006 First Edition Worldwide, CEOs are not bracing for change; instead, they are embracing

More information

Masters of Science in Software & Information Systems

Masters of Science in Software & Information Systems Masters of Science in Software & Information Systems To be developed and delivered in conjunction with Regis University, School for Professional Studies Object Oriented Design Table of Contents January

More information

Aerospace Software Engineering

Aerospace Software Engineering 16.35 Aerospace Software Engineering Software Architecture The 4+1 view Patterns Prof. Kristina Lundqvist Dept. of Aero/Astro, MIT Why Care About Software Architecture? An architecture provides a vehicle

More information

Automating Rich Internet Application Development for Enterprise Web 2.0 and SOA

Automating Rich Internet Application Development for Enterprise Web 2.0 and SOA Automating Rich Internet Application Development for Enterprise Web 2.0 and SOA Enterprise Web 2.0 >>> FAST White Paper November 2006 Abstract Modern Rich Internet Applications for SOA have to cope with

More information

BCS-ISEB Business Analysis Training

BCS-ISEB Business Analysis Training BCS-ISEB Business Analysis Training Qualifications and Training Explained 2012 1 BCS-ISEB Business Analysis Training Business Analysis is where business management skills and IT systems skills meet. It

More information

SOMA, RUP and RMC: the right combination for Service Oriented Architecture

SOMA, RUP and RMC: the right combination for Service Oriented Architecture SOMA, RUP and RMC: the right combination for Service Oriented Architecture WebSphere User Group, Bedfont, 4th March, 2008 Keith Mantell Senior Solution Architect IBM Rational keith_mantell@uk.ibm.com March

More information

A Framework for Adaptive Process Modeling and Execution (FAME)

A Framework for Adaptive Process Modeling and Execution (FAME) A Framework for Adaptive Process Modeling and Execution (FAME) Perakath Benjamin pbenjamin@kbsi.com Madhav Erraguntla merraguntla@kbsi.com Richard Mayer rmayer@kbsi.com Abstract This paper describes the

More information

Applying 4+1 View Architecture with UML 2. White Paper

Applying 4+1 View Architecture with UML 2. White Paper Applying 4+1 View Architecture with UML 2 White Paper Copyright 2007 FCGSS, all rights reserved. www.fcgss.com Introduction Unified Modeling Language (UML) has been available since 1997, and UML 2 was

More information

Trends in Embedded Software Development in Europe. Dr. Dirk Muthig dirk.muthig@iese.fraunhofer.de

Trends in Embedded Software Development in Europe. Dr. Dirk Muthig dirk.muthig@iese.fraunhofer.de Trends in Embedded Software Development in Europe Dr. Dirk Muthig dirk.muthig@iese.fraunhofer.de Problems A software project exceeds the budget by 90% and the project time by 120% in average Project Management

More information

Managing Software Evolution through Reuse Contracts

Managing Software Evolution through Reuse Contracts VRIJE UNIVERSITEIT BRUSSEL Vrije Universiteit Brussel Faculteit Wetenschappen SCI EN T I A V INCERE T ENE BRA S Managing Software Evolution through Reuse Contracts Carine Lucas, Patrick Steyaert, Kim Mens

More information

The case for service oriented architecture in realising trusted, interoperable, pan-european egovernment services.

The case for service oriented architecture in realising trusted, interoperable, pan-european egovernment services. The case for service oriented architecture in realising trusted, interoperable, pan-european egovernment services. Stephen McGibbon Microsoft EMEA Tel. +445511490070 Email. stephenm@microsoft.com Abstract:

More information

Guide to CQI Qualifications for learners

Guide to CQI Qualifications for learners Guide to CQI Qualifications for learners CQI Qualifications and Professional Recognition Quality management is about improving organisational performance in delivering product and service that meet customer

More information

Real Time Embedded Software Development Using Agile Technology An Experience Report

Real Time Embedded Software Development Using Agile Technology An Experience Report Real Time Embedded Software Development Using Agile Technology An Experience Report Vincent Rivas Joseph N Frisina BAE SYSTEMS Information and Electronic Systems Integration Inc CNIR Agile Development

More information

P3M3 Portfolio Management Self-Assessment

P3M3 Portfolio Management Self-Assessment Procurement Programmes & Projects P3M3 v2.1 Self-Assessment Instructions and Questionnaire P3M3 Portfolio Management Self-Assessment P3M3 is a registered trade mark of AXELOS Limited Contents Introduction

More information

A Technology Based Solution to Move Client Server Applications to Java /.NET in Native 3-Tier Web Code Structures

A Technology Based Solution to Move Client Server Applications to Java /.NET in Native 3-Tier Web Code Structures A Technology Based Solution to Move Client Server Applications to Java /.NET in Native 3-Tier Web Code Structures Accelerated Application Modernization (AAM) Page 1 of 16 Table of Contents TABLE OF CONTENTS...

More information

Automated Program Behavior Analysis

Automated Program Behavior Analysis Automated Program Behavior Analysis Stacy Prowell sprowell@cs.utk.edu March 2005 SQRL / SEI Motivation: Semantics Development: Most engineering designs are subjected to extensive analysis; software is

More information

Modular Safety Cases

Modular Safety Cases Modular Safety Cases Facilitating Incremental Upgrade to Military Capability by Managing the Complexity of Safety Assurance Executive Summary Maintaining military capability at state of the art levels,

More information

The Software Process. The Unified Process (Cont.) The Unified Process (Cont.)

The Software Process. The Unified Process (Cont.) The Unified Process (Cont.) The Software Process Xiaojun Qi 1 The Unified Process Until recently, three of the most successful object-oriented methodologies were Booch smethod Jacobson s Objectory Rumbaugh s OMT (Object Modeling

More information

Software Specification and Testing

Software Specification and Testing Software Specification and Testing Using UML and OCL Jonathan Milley Faculty of Engineering and Applied Science MUN St. John s, Newfoundland Email: jmilley@engr.mun.ca Dr. Dennis K. Peters Faculty of Engineering

More information

Chapter 15. Web services development lifecycle

Chapter 15. Web services development lifecycle Slide 15.1 nology Chapter 15 Web Services Development Lifecycle Web Service es: Princip ples & Tech Mike P. Papazoglou mikep@uvt.nl Slide 15.2 Topics Web services development Properties of service development

More information

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. 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:

More information

ehealth Architecture Principles

ehealth Architecture Principles ehealth Architecture Principles Version 3.0 June 2009 Document Control Details Title: ehealth Architecture Principles Owner: Head of Architecture and Design, Scottish Government ehealth Directorate Version:

More information

THE DEVELOPMENT OF A WEB BASED MULTIMEDIA INFORMATION SYSTEM FOR BUILDING APPRAISAL

THE DEVELOPMENT OF A WEB BASED MULTIMEDIA INFORMATION SYSTEM FOR BUILDING APPRAISAL THE DEVELOPMENT OF A WEB BASED MULTIMEDIA INFORMATION SYSTEM FOR BUILDING APPRAISAL Dominic O' Sullivan Department of Civil & Environmental Engineering National University of Ireland, Cork. Dr. Marcus

More information

LAB 3: Introduction to Domain Modeling and Class Diagram

LAB 3: Introduction to Domain Modeling and Class Diagram LAB 3: Introduction to Domain Modeling and Class Diagram OBJECTIVES Use the UML notation to represent classes and their properties. Perform domain analysis to develop domain class models. Model the structural

More information

Service Oriented Architecture (SOA) An Introduction

Service Oriented Architecture (SOA) An Introduction Oriented Architecture (SOA) An Introduction Application Evolution Time Oriented Applications Monolithic Applications Mainframe Client / Server Distributed Applications DCE/RPC CORBA DCOM EJB s Messages

More information

Sistemi ICT per il Business Networking

Sistemi ICT per il Business Networking Corso di Laurea Specialistica Ingegneria Gestionale Sistemi ICT per il Business Networking Software Development Processes Docente: Vito Morreale (vito.morreale@eng.it) 17 October 2006 1 The essence of

More information

zen Platform technical white paper

zen Platform technical white paper zen Platform technical white paper The zen Platform as Strategic Business Platform The increasing use of application servers as standard paradigm for the development of business critical applications meant

More information

Foundations for Systems Development

Foundations for Systems Development Foundations for Systems Development ASSIGNMENT 1 Read this assignment introduction. Then, read Chapter 1, The Systems Development Environment, on pages 2 25 in your textbook. What Is Systems Analysis and

More information

INTERMEDIATE QUALIFICATION

INTERMEDIATE QUALIFICATION PROFESSIONAL QUALIFICATION SCHEME INTERMEDIATE QUALIFICATION SERVICE CAPABILITY PLANNING, PROTECTION AND OPTIMIZATION CERTIFICATE SYLLABUS The Swirl logo is a trade mark of the Cabinet Office ITIL is a

More information