0
1.9kviews
Software Re engineering
1 Answer
0
118views

When we need to update the software to keep it to the current market, without impacting its functionality, it is called software re-engineering. It is a thorough process where the design of software is changed and programs are re-written.

Legacy software cannot keep tuning with the latest technology available in the market. As the hardware become obsolete, updating of software becomes a headache. Even if software grows old with time, its functionality does not.

For example, initially Unix was developed in assembly language. When language C came into existence, Unix was re-engineered in C, because working in assembly language was difficult.

Other than this, sometimes programmers notice that few parts of software need more maintenance than others and they also need re-engineering.

enter image description here

Re-Engineering Process

  • Decide what to re-engineer. Is it whole software or a part of it?

  • Perform Reverse Engineering, in order to obtain specifications of existing software.

  • Restructure Program if required. For example, changing function-oriented programs into object-oriented programs.

  • Re-structure data as required.

  • Apply Forward engineering concepts in order to get re-engineered software.

Please log in to add an answer.