1 / 31

Introduction and Basic Definitions

Introduction and Basic Definitions. Lecture 1. Software Engineering. The economies of ALL developed nations are dependent on software. More and more systems are software controlled More and more, individuals and society rely on advanced software systems.

camdyn
Télécharger la présentation

Introduction and Basic Definitions

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction and Basic Definitions Lecture 1

  2. Software Engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • The economies of ALL developed nations are dependent on software. • More and more systems are software controlled • More and more, individuals and society rely on advanced software systems. • We need to be able to produce reliable and trustworthy systems economically and quickly. • Software engineering is concerned with theories, methods and tools for professional software development.

  3. Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • Software engineering is an engineering discipline that is concerned with all aspects of software production from the early stages of system specification to maintaining the system after it has gone into use. • Engineering discipline • Uses appropriate theories and methods to solve problems, bearing in mind organizational and financial constraints. • All aspects of software production • Not just technical process of development. Also project management and the development of tools, methods etc. to support software production.

  4. Why study software engineering? • Writing a program is easy • Program ~= code • Developing a software system is harder • System ~= program plus technical documentation sufficient such that someone other than original developers can maintain and extend • Developing a software product is very hard • Product ~= system plus customers, fulfilling the business needs of those customers, with customer-oriented documentation and support

  5. Software costs Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • Software costs often dominate computer system costs. • The costs of software on a PC are often greater than the hardware cost. • Software costs more to maintain than it does to develop. • For systems with a long life, maintenance costs may be several times development costs. • Software engineering is concerned with cost-effective software development. • It is usually cheaper, in the long run, to use software engineering methods and techniques for software systems rather than just write the programs as if it was a personal programming project. • For most types of system, the majority of costs are the costs of changing the software after it has gone into use.

  6. Software products Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • Generic products • Stand-alone systems that are marketed and sold to any customer who wishes to buy them. • Examples – PC software such as graphics programs, project management tools; CAD software; software for specific markets such as appointments systems for dentists. • The specification of what the software should do is owned by the software developer and decisions on software change are made by the developer.

  7. Software products Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • Customized products • Software that is commissioned by a specific customer to meet their own needs. • Examples – embedded control systems, air traffic control software, traffic monitoring systems. • The specification of what the software should do is owned by the customer for the software and they make decisions on software changes that are required.

  8. FAQs- Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  9. FAQs- Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  10. FAQs- Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  11. FAQs- Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  12. FAQs- Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  13. FAQs- Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  14. FAQs -Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  15. FAQs -Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  16. FAQs -Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  17. FAQs -Software engineering Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  18. Essential attributes of good software Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  19. Application types Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • Stand-alone applications • These are application systems that run on a local computer, such as a PC. • They include all necessary functionality and do not need to be connected to a network. • Interactive transaction-based applications • Applications that execute on a remote computer and are accessed by users from their own PCs or terminals. • These include web applications such as e-commerce applications. • Embedded control systems • These are software control systems that control and manage hardware devices. • Numerically, there are probably more embedded systems than any other type of system. • Batch processing systems • These are business systems that are designed to process data in large batches. They process large numbers of individual inputs to create corresponding outputs.

  20. Application types Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • Entertainment systems • These are systems that are primarily for personal use and which are intended to entertain the user. • Systems for modelling and simulation • These are systems that are developed by scientists and engineers to model physical processes or situations, which include many, separate, interacting objects. • Data collection systems • These are systems that collect data from their environment using a set of sensors and send that data to other systems for processing. • Systems of systems • These are systems that are composed of a number of other software systems.

  21. General issues that affect most software Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • Heterogeneity • Increasingly, systems are required to operate as distributed systems across networks that include different types of computer and mobile devices. • Business and social change • Business and society are changing incredibly quickly as emerging economies develop and new technologies become available. They need to be able to change their existing software and to rapidly develop new software. • Security and trust • As software is intertwined with all aspects of our lives, it is essential that we can trust that software.

  22. The software process A structured set of activities required to develop a software system. A software process model is an abstract representation of a process. It presents a description of a process from some particular perspective. Generic Software Process models The waterfall model Separate and distinct phases of specification and development. Evolutionary development Specification, development and validation are interleaved. Component-based software engineering The system is assembled from existing components. Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  23. The software process Many different software processes but all involve: Specification – defining what the system should do; Design and implementation – defining the organization of the system and implementing the system; Validation – checking that it does what the customer wants; Evolution – changing the system in response to changing customer needs. Process descriptions When we describe and discuss processes, we usually talk about the activities in these processes such as specifying a data model, designing a user interface, etc. and the ordering of these activities may also include: Products, which are the outcomes of a process activity; Roles, which reflect the responsibilities of the people involved in the process; Pre- and post-conditions, which are statements that are true before and after a process activity has been enacted or a product produced. Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  24. Plan-driven and agile processes Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • Plan-driven processes • Processes where all of the process activities are planned in advance and progress is measured against this plan. • The waterfall model (Plan driven) • . Separate and distinct phases of specification and development. • In agile processes, • planning is incremental and it is easier to change the process to reflect changing customer requirements. • Incremental development (May be plan-driven or agile). • Specification, development and validation are interleaved. • Reuse-oriented software engineering (May be plan-driven or agile). • The system is assembled from existing components. • In practice, most practical processes include elements of both plan-driven and agile approaches. • There are no right or wrong software processes.

  25. Software specification The process of establishing what services are required and the constraints on the system’s operation and development. Requirements engineering process Feasibility study Is it technically and financially feasible to build the system? Requirements elicitation and analysis What do the system stakeholders require or expect from the system? Requirements specification Defining the requirements in detail Requirements validation Checking the validity of the requirements Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  26. Software design and implementation The process of converting the system specification into an executable system. Software design Design a software structure that realises the specification; Implementation Translate this structure into an executable program; The activities of design and implementation are closely related and may be inter-leaved. Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  27. Design activities Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST • Architectural design, where you identify the overall structure of the system, the principal components (sometimes called sub-systems or modules), their relationships and how they are distributed. • Interface design, where you define the interfaces between system components. • Component design, where you take each system component and design how it will operate. • Database design, where you design the system data structures and how these are to be represented in a database.

  28. Software validation Verification and validation (V & V) is intended to show that a system conforms to its specification and meets the requirements of the system customer. Involves checking and review processes and system testing. System testing involves executing the system with test cases that are derived from the specification of the real data to be processed by the system. Testing is the most commonly used V & V activity. Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  29. Testing stages Development or component testing Individual components are tested independently; Components may be functions or objects or coherent groupings of these entities. System testing Testing of the system as a whole. Testing of emergent properties is particularly important. Acceptance testing Testing with customer data to check that the system meets the customer’s needs. Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  30. Testing phases in a plan-driven software process Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

  31. Acknowledgement • The topics covered in this lecture were taken from the following books and material, I extend my profound regards to the authors of the books for extending their willingness to share the material for academic purpose. • Software Engineering by Sommerville • Chapter 1 & 2 • Software Engineering A Practitioner's Approach 7th edition by “Rogger S Pressman ” • Chapter 1 • SEBOK 2004 Guide • Chapter 1 & 2 Adv Software Engg- MSCS 19, Asst Prof Athar Mohsin, MCS-NUST

More Related