You are on page 1of 3

Assignment - 3

01. 1. List the advantages and Disadvantages of the Software Processes discusse
here.

02. 2. Name two software processes most suitable to accommodate software


change? Explain your answer.

● Waterfall Model
The waterfall model is a software development model used in the context of
large, complex projects, typically in the field of information technology. It is
characterized by a structured, sequential approach to project management
and software development.

The waterfall model is useful in situations where the project requirements are
well-defined and the project goals are clear. It is often used for large-scale
projects with long timelines, where there is little room for error and the project
stakeholders need to have a high level of confidence in the outcome.
● Prototyping

Prototyping is defined as the process of developing a working replication of a


product or system that has to be engineered. It offers a small-scale facsimile
of the end product and is used for obtaining customer feedback. The
Prototyping concept is described below:

The Prototyping Model is one of the most popularly used Software


Development Life Cycle Models (SDLC models). This model is used when the
customers do not know the exact project requirements beforehand. In this
model, a prototype of the end product is first developed, tested, and refined
as per customer feedback repeatedly till a final acceptable prototype is
achieved which forms the basis for developing the final product.

Ref - www.geeksforgeeks.org

Assignment - 4

01. Modify the factorial program to display the results in the following manner.
e.g.: when 3, 4, is given to find factorial.
Factorial of 3 = 3*2*1 = 6
Factorial of 4 = 4*3*2*1 = 24
Factorial of 5 = 5*4*3*2*1 = 120

You might also like