Skip to main content

Software Engineering lec-2 About Software Engineering!

Hi, today we'll going to learn about Software requirements, specifications, applications and lots of more let's start with software engineering definition.

Software Engineering
-Software engineering is an engineering discipline that is concerned with all aspects of   software production form the early stages of system specification through to maintaining   the system after it has gone into use.

-The economies of all developed nations are dependent on software.
-More and more systems are software controlled software engineering is concerned with   theories, methods and tools for professional software development.
-Expenditure on software represents a significant fraction of GNP in all developed countries.

-Engineering discipline:
 Using appropriate theories and methods to solve problems bearing in mind organizational   and financial constraints.
-All aspects of software productions:
 Not just technical process of development also project management and the development 
 of  tools methods etc. to support software production.  
These are the questions and answers you have to know

 Software Products
There are two types of software products: Generic and Customized products.

-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.
-Specifications of Generic Products:
 the specifications of what the software should do is owned by the software developer and   decisions on software change are made by the developer.
-Specifications of Customization Products:
 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.  
-Customized Products: 
 Software that is commissioned by a specific customer to meet their own needs.
 Examples - Embedded control system, air traffic control software, traffic monitoring   systems.
Essential Attributes of a good software

General issues that affect most software
-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   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.
APPLICATION TYPES
-Stand-Alone Applications:
 These are applications 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 internet network or any   network.

-Interactive transaction based applications:
 Applications that execute on a remote computer and are accessed by user form 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 then 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.

-Entertainment Systems:
 These are systems that are primarily for personal use and which are intended to entertain   the user e.g video and mp3 players.

-Systems for modeling and simulation:
 These are systems that are developed by scientists and engineers to model physical process or situations which include many separate interacting objects.

Web Based Software Engineering
Web based systems are complex distributed systems but the fundamentals principles of software engineering discussed previously are as applicable to them as they are apply to  web based software in the same way that they apply to other types of software system or to any other types of system. 

Note: (read about software models in software engineering)

Comments

Popular posts from this blog

Numerical Analysis lec-3 False Position Method

Hi, today we'll going to learn the second method of numerical analysis the False Position Method out of 40 methods FALSE POSITION METHOD False Position Method is an alternative method and is more efficient then bisection method, it is the oldest method for finding the real root of an equation F( X ) = 0 and is similar to the bisection method. Consider the equation F( X ) = 0 let [ X0 , X1 ] be two different values of X such that  F( X0 ) - F( X1 ) < 0. OR A simple modification of a secant method produces a method which is usually converges. the new method is called regula falsi (False Position) and also Linear interpolation . it needs two initial approximations X0 and X1 so that F( X0 ) F( X1 ) < 0 i.e the two functions must have the opposite signs. The Modified False Position Method In this method the F( X ) value of a stagnant end point is halved if that point has repeated twice or more. the end point that repeats its called a stagnant point, the excepti

Numerical Analysis lec-4 Newton Raphson method

Hi, Today we'll learn about  Newton-Raphson Method  " Newton's Method ". this method is for finding successively better approximate solutions to the roots of a function (real valued). so are you ready for this............you will. Newton's Method: The Newton's method is one of the most powerful and well known method used for finding a root of f(X) = 0 there are many ways to derive Newton-Raphson method . the simplest way to derive this formula is by using the first two terms in the Taylor series expansion of the form.  Instead of working with the chord joining points on the graph of y= f(X) as in bisection method and false position method s. Newton's method uses the tangent at one point on the graph of y= f(X) therefor it requires only one instead of two initial guesses. Suppose X is an initial guesses draw the tangent line at X= X0 and procedure it to meet the X - axis at X = X1 Newton's Method which shows in picture above. now from righ