Top Banner
SESSION 2017-18 CLASS- BSC(CS) I YEAR PRESENTATION ON SYSTEM DEVELOPMENT LIFE CYCLE SUBMITTED TO SUBMITTED BY C.L. MALVIYA SIR MOHINI YADUWANSHI SOURABH SIR ROSHNI RAJPUT CHANCHAL RATHORE BHARTI RAJPUT
14

SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Mar 16, 2018

Download

Education

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: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

SESSION 2017-18

CLASS- BSC(CS) I YEAR

PRESENTATION ON

SYSTEM DEVELOPMENT LIFE CYCLE

SUBMITTED TO SUBMITTED BYC.L. MALVIYA SIR MOHINI YADUWANSHI

SOURABH SIR ROSHNI RAJPUT

CHANCHAL RATHORE

BHARTI RAJPUT

Page 2: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Problem Identification

Problem Analysis

Problem Design

Problem Coding

Problem Testing and Debugging

Problem Documentation

Problem Maintenance

Page 3: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Understand the problem.

Read each statement of the problem carefully.

What is expected by solving the problem.

Understand the key words.

We can not make any progress if we do not

understand the problem.

Page 4: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Understand the requirement of the problem to be solved.

This process is the first step towards the solution.

to full fill the requirements of

input/output

time limitation

processing requirement

memory

Page 5: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

In this process of problem designing, we define the solution of the problem.

It provide the result of the problem .

it is of two type 1.algorithums.2.flowcharts.

Page 6: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Step by step solution of the problem.

Example:-

1.Start

2.Input a,b

3.c=a+b (processing)

4.Output c

5.stop. Outputa=4 ,b =5

C=a+b;C=4+5;

C=9;

Page 7: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Solve the problem in the form of stature.

Example:-

start

c=a+b

Output c

Input a,b

stop

Page 8: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Once the problem has been analyzed, it must be coded in a language ,which the computer can understand .this code is called a program .In other words ,coding is just the translation of algorithm into a suitable computer programming language (such as Pascal ,COBAL ,C, FORTRAN ,C++ ,etc) .

Page 9: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Program is created it must be compile and run .

During compilation process, errors are detected by the

complier .

This error are similar like grammatical errors in

English .

If error are there in program .

we must determine what correction should be made to

the program .

Make the correction and recompile .

Page 10: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Explanation about the program in the form of comments and remarks.

it is divided into two parts

a. Technical documentation.

b. User – level documentation.

Page 11: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

It is for the programmer .

Who may try to modify the program .

It include information about the formula used in the program .

Page 12: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

It help the user to understand the program.

Which is not a programmer .

And try to make use of program .

Page 13: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018

Maintenance of the program is very important because with the time over program become outdated so they must be updated according to the user’s needs.

many time changes in the program would provide a new version of the application

Page 14: SYSTEM DEVELOPMENTS LIFE CYCLE BSC I 2018