Top Banner
CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering
46

CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Dec 25, 2015

Download

Documents

Merryl Doyle
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

CSEB233: Fundamentals of Software Engineering

Introduction to Software & Software

Engineering

Page 2: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Lesson Objectives

Define ‘Software’ Discuss issues related to Software

Define ‘Software Engineering’ (SE) Describe Polya’s Four Essence of SE

Practices Explain Hooker’s Seven SE Principles Discuss several myths of SE

Page 3: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software & Software Engineering

What is Software?

Page 4: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

What is Software?

Software is developed or engineered, it is not manufactured in the classical sense

Software does not "wear out" Although the industry is moving toward

component-based construction, most software continues to be custom-built

Page 5: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Wear vs. Deterioration

idealized curve

change

actual curve

Failurerate

Time

increased failurerate due to side effects

Page 6: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software Applications

System software Application software Engineering/scientific software Embedded software Product-line software WebApps (Web applications) AI software

Page 7: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software — New Categories

Open world computing The rapid growth of wireless

networking leads to true pervasive, distributed computing

The challenge is to develop software that can communicate across mobile devices

Netsourcing WWW becoming a computing

engine as well as content provider

Sophisticated but simple applications for worldwide end-user are needed

Open source “free” source code open to

the computing community A trend that results in

distribution of source code where many people can contribute

a blessing, but also a potential curse!

The challenge is to build self descriptive code and to ensure that changes are traceable.

Page 8: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Legacy Software

Legacy software systems … were developed decades ago, and have been continually modified to meet changes in business requirements and computing platforms, costly to maintain and risky to evolve.

Page 9: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Legacy Software

Why must it change? Software must be adapted to meet the needs of

new computing environments or technology Software must be enhanced to implement new

business requirements Software must be extended to make it

interoperable with other more modern systems or databases

Software must be re-architected to make it viable within a network environment

Page 10: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Characteristics of WebApps - I

Network Intensiveness A WebApp resides on a network and must serve the needs of a

diverse community of clients Concurrency

A large number of users may access the WebApp at one time Unpredictable load

The number of users of the WebApp may vary by orders of magnitude from day to day

Performance If a WebApp user must wait too long (for access, for server-side

processing, for client-side formatting and display), he or she may decide to go elsewhere

Page 11: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Characteristics of WebApps - II

Availability Although expectation of 100 percent availability is unreasonable, users of

popular WebApps often demand access on a “24/7/365” basis. Data driven

The primary function of many WebApps is to use hypermedia to present text, graphics, audio, and video content to the end-user.

Content sensitive The quality and aesthetic nature of content remains an important

determinant of the quality of a WebApp. Continuous evolution

Unlike conventional application software that evolves over a series of planned, chronologically-spaced releases, Web applications evolve continuously.

Page 12: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Characteristics of WebApps - III

Immediacy Although immediacy—the compelling need to get software to

market quickly—is a characteristic of many application domains, WebApps often exhibit a time to market that can be a matter of a few days or weeks

Security Because WebApps are available via network access, it is

difficult, if not impossible, to limit the population of end-users who may access the application

Aesthetics An undeniable part of the appeal of a WebApp is its look and

feel

Page 13: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software & Software Engineering

What is Software Engineering?

Page 14: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software Engineering

Some realities: a concerted effort should be made to understand

the problem before a software solution is developed

design becomes a pivotal activity software should exhibit high quality software should be maintainable

The conclusion? Software should be ‘engineered’

Page 15: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software EngineeringThe Seminal Definition

Software engineering is The establishment and use of sound

engineering principles in order to obtain economically, software that is reliable and works efficiently on real machines

Page 16: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software EngineeringThe IEEE Definition

Software Engineering The application of a systematic, disciplined,

quantifiable approach to the development, operation, and maintenance of software; that is, the application of engineering to software

The study of approaches as described above

Page 17: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

A Layered Technology

Software Engineering

a “quality” focus

process model

methods

tools

Page 18: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

A Process Framework

Framework activities Umbrella Activities

Page 19: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Framework Activities

Communication Planning Modeling

Analysis of requirements Design

Construction Code generation Testing

Deployment

Page 20: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Umbrella Activities

Software project management Formal technical reviews Software quality assurance Software configuration management Work product preparation and production Reusability management Measurement Risk management

Page 21: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Adapting a Process Model

the overall flow of activities, actions, and tasks and the interdependencies among them

the degree to which actions and tasks are defined within each framework activity

the degree to which work products are identified and required

the manner which quality assurance activities are applied

the manner in which project tracking and control activities are applied

Page 22: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Adapting a Process Model

the overall degree of detail and rigor with which the process is described

the degree to which the customer and other stakeholders are involved with the project

the level of autonomy given to the software team

the degree to which team organization and roles are prescribed

Page 23: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software & Software Engineering

Four Essence of SE Practices

Page 24: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

The Essence of SE Practices

Polya suggests: Understand the problem

♦ communication and analysis Plan a solution

♦ modeling and software design Carry out the plan

♦ code generation Examine the result for accuracy

♦ testing and quality assurance

Page 25: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

The Essence of SE Practices1. Understand the Problem

Who has a stake in the solution to the problem? Who are the stakeholders?

What are the unknowns? What data, functions, and features are required to

properly solve the problem? Can the problem be compartmentalized?

Is it possible to represent smaller problems that may be easier to understand?

Can the problem be represented graphically? Can an analysis model be created?

Page 26: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

The Essence of SE Practices 2. Plan the Solution

Have you seen similar problems before? Are there patterns that are recognizable in a potential solution? Is there existing software that implements the data, functions,

and features that are required? Has a similar problem been solved?

If so, are elements of the solution reusable? Can sub-problems be defined?

If so, are solutions readily apparent for the subproblems? Can you represent a solution in a manner that leads to

effective implementation? Can a design model be created?

Page 27: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

The Essence of SE Practices 3. Carry Out the Plan

Does the solution conform to the plan? Is source code traceable to the design model?

Is each component part of the solution provably correct? Has the design and code been reviewed, or

better, have correctness proofs been applied to algorithm?

Page 28: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

The Essence of SE Practices4. Examine the Result

Is it possible to test each component part of the solution? Has a reasonable testing strategy been

implemented? Does the solution produce results that

conform to the data, functions, and features that are required? Has the software been validated against all

stakeholder requirements?

Page 29: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software & Software Engineering

Seven General Principles of SE

Page 30: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Hooker’s General Principles

Provide value to users KIS (Keep it simple!) Maintain the Vision What You Produce, Others Will Consume Be Open to the Future Plan Ahead for Reuse Think!

Page 31: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Hooker’s General Principles1. Provide value to users

This is the reason why it all exists in the first place

All decisions should be made with this in mind

Page 32: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Hooker’s General Principles2. Keep It Simple (KISS)

There are many factors to consider in any design effort

Thus, all software design should be as simple as possible but not simpler to ease understanding and maintenance of the software

Page 33: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Hooker’s General Principles3. Maintain the Vision

A clear vision is essential to the success of a software project

Compromising the architectural vision of a software system weakens and break even well-designed systems

Page 34: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Hooker’s General Principles4. What You Produce, Others Will Consume

Consume use, maintain, document or depend on

Always specify, design, and implement knowing others will have to understand what you are doing

Page 35: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Hooker’s General Principles5. Be Open to the Future

True “industrial-strength” software must endure long lifetime

Hence, design the software to: solve the general problem, not just the specific

one, be ready to adapt to changes (in hardware,

computing platform etc.), and be reused

Page 36: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Hooker’s General Principles6. Plan Ahead for Reuse

Reuse reduces the cost and increases the value of the reused components and the systems into which they are incorporated

Page 37: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Hooker’s General Principles7. Think

When you think about something (placing clear, complete thought before action), you are more likely to do it right (more importantly, the first time).

Page 38: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software & Software Engineering

Software Myths

Page 39: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software Myths

Software myths – erroneous beliefs about software and the process that is used to build it

Misleading attitudes that have caused serious problems for managers and practitioners

Classifications of software myths: Management Customer Practitioner

Page 40: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software MythsManagement

Myth: We already have a book that’s full of standards

and procedures for building software. Won’t that provide my people with everything they need to know?

Of we get behind schedule, we can add more programmers and catch up.

If I decide to outsource the software project to a third party, I can just relax and let that firm build it.

Page 41: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software Myths Customer

Myth: A general statement of objectives I sufficient to

begin writing program – we can fill the details later.

Software requirements continuously change, but change can be easily accommodated because software is flexible.

Page 42: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Software MythsPractitioner

Myth: Once we write the program and get it work, our job

is done. Until I get the program running, I have no way of

assessing its quality The only deliverable work product of a successful

project is the working program Software engineering will make us create

voluminous and unnecessary documentation and will invariable slow us down.

Page 43: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

How It all Starts

Every software project is precipitated by some business need the need to correct a defect in an existing

application; the need to adapt a ‘legacy system’ to a changing

business environment; the need to extend the functions and features of an

existing application, or the need to create a new product, service, or

system.

Page 44: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Summary

Definitions of software and software engineering

Software deteriorates but never wear out Several software application domain – system

software, engineering/scientific software, AI software, embedded software, etc.

The Polya’s Four Essence of SE Practices Understand the problem; Plan a solution; Execute

the plan; Examine the result for accuracy

Page 45: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

Summary

Seven SE Principles The Reason It All Exists; KISS; Maintain the

Vision; What You Produce, Others Will Consume; Be Open to the Future; Plan Ahead for Reuse; Think!

Software myths have caused serious problems for the software industry

Page 46: CSEB233: Fundamentals of Software Engineering Introduction to Software & Software Engineering.

THE ENDCopyright © 2014

College of Information Technology