Waterfall Model

  Home  Testing Model  Waterfall Model


“Waterfall Model Interview Questions and Answers will guide us now that The waterfall model is a sequential software development process, in which progress is seen as flowing steadily downwards (like a waterfall) through the phases of Conception, Initiation, Analysis, Design (validation), Construction, Testing and Maintenance. So learn Waterfall Model with the help of this Waterfall Model Interview Questions with Answers guide”



31 Waterfall Model Questions And Answers

1⟩ Explain the waterfall model phases?

The waterfall model phases are followed in order:

1. Requirements specification

2. Design

3. Construction (AKA implementation or coding)

4. Integration

5. Testing and debugging (AKA Validation)

6. Installation

7. Maintenance

 166 views

2⟩ Explain Waterfall Model Supporting arguments?

Time spent early in the software production cycle can lead to greater economy at later stages. It has been shown that a bug found in the early stages (such as requirements specification or design) is cheaper in terms of money, effort and time, to fix than the same bug found later on in the process. Requirements defect that is left undetected until construction or maintenance will cost 50 to 200 times as much to fix as it would have cost to fix at requirements time to take an extreme example, if a program design turns out to be impossible to implement, it is easier to fix the design at the design stage than to realize months later, when program components are being integrated, that all the work done so far has to be scrapped because of a broken design.

 188 views

3⟩ What is the waterfall model?

The waterfall model derives its name due to the cascading effect from one phase to the other. In this model each phase well defined starting and ending point, with identifiable deliveries to the next phase.

 182 views

4⟩ Criticize Waterfall Model?

The waterfall model is argued by many to be a bad idea in practice. This is mainly because of their belief that it is impossible for any non-trivial project to get one phase of a software product's lifecycle perfected, before moving on to the next phases and learning from them.

For example, clients may not be aware of exactly what requirements they need before reviewing a working prototype and commenting on it; they may change their requirements constantly. Designers and programmers may have little control over this. If clients change their requirements after the design is finalized, the design must be modified to accommodate the new requirements. This effectively means invalidating a good deal of working hours, which means increased cost, especially if a large amount of the project's resources has already been invested in Big Design Up Front.

 212 views

5⟩ Explain some Advantages of Waterfall Model?

► Testing is inherent to every phase of the waterfall model

► It is an enforced disciplined approach

► It is documentation driven, that is, documentation is produced at every stage

 177 views

6⟩ What is Waterfall Model in software engineering?

The waterfall model is a sequential design process, often used in software development processes, where progress is seen as flowing steadily downwards (like a waterfall) through the phases of Conception, Initiation, Analysis, Design, Construction, Testing, Production/Implementation, and Maintenance.

 178 views

7⟩ Explain Waterfall Modified models?

In response to the perceived problems with the pure waterfall model, many modified waterfall models have been introduced. These models may address some or all of the criticisms of the pure waterfall model.

 196 views

9⟩ What is classic life cycle model?

Waterfall model is also called as the classic life cycle model as it suggests a systematic sequential approach to software development. This one of the oldest model followed in software engineering.

 189 views

10⟩ When the process of Waterfall Model begin?

The process begins with the communication phase where the customer specifies the requirements and then progress through other phases like planning, modeling, construction and deployment of the software.

 198 views

11⟩ Explain Disadvantages of Waterfall Model?

The waterfall model is the oldest and the most widely used paradigm.

However, many projects rarely follow its sequential flow. This is due to the inherent problems associated with its rigid format. Namely:

1) It only incorporates iteration indirectly, thus changes may cause considerable confusion as the project progresses.

2) As The client usually only has a vague idea of exactly what is required from the software product, this WM has difficulty accommodating the natural uncertainty that exists at the beginning of the project.

3) The customer only sees a working version of the product after it has been coded. This may result in disaster if any undetected problems are precipitated to this stage.

 178 views

12⟩ What is communication phase of waterfall model?

In communication phase the major task performed is requirement gathering which helps in finding out exact need of customer. Once all the needs of the customer are gathered the next step is planning.

 178 views

13⟩ What is planning phase of waterfall model?

In planning major activities like planning for schedule, keeping tracks on the processes and the estimation related to the project are done. Planning is even used to find the types of risks involved throughout the projects. Planning describes how technical tasks are going to take place and what resources are needed and how to use them.

 187 views

14⟩ What is modeling phase of waterfall model?

This is one the important phases as the architecture of the system is designed in this phase. Analysis is carried out and depending on the analysis a software model is designed.Different models for developing software are created depending on the requirements gathered in the first phase and the planning done in the second phase.

 195 views

15⟩ What is construction phase of waterfall model?

The actual coding of the software is done in this phase. This coding is done on the basis of the model designed in the modeling phase. So in this phase software is actually developed and tested.

 184 views

16⟩ What is deployment phase of waterfall model?

In this last phase the product is actually rolled out or delivered and installed at customer's end and support is given if required. A feedback is taken from the customer to ensure the quality of the product.

 186 views

19⟩ What are the advantages of Waterfall Model?

1) Being a linear model, it is very simple to implement.The amount of resources required to implement this model are minimal.

2) Documentation is produced at every stage of the software's development. This makes understanding the product designing procedure, simpler.

3) After every major stage of software coding, testing is done to check the correct running of the code.

 190 views

20⟩ What are the disadvantages of Waterfall Model?

1) Ironically, the biggest disadvantage is one of its greatest advantages. You cannot go back a step; if the design phase has gone wrong, things can get very complicated in the implementation phase.

2) Often, the client is not very clear of what he exactly wants from the software. Any changes that he mentions in between, may cause a lot of confusion.

3) Small changes or errors that arise in the completed software may cause a lot of problems.

4) Until the final stage of the development cycle is complete, a working model of the software does not lie in the hands of the client. Thus, he is hardly in a position to inform the developers, if what has been designed is exactly what he had asked for.

 187 views