Difference between Top down and bottom up approaches for a
given project ?
Answer Posted / reejusri
These are two design approaches, which can be explained as:
You can imagine a tree like structure , in which when you
are following top-down appoarch you move from root node to
leaf node and when you follow bottom-up apprach you follow
leaf node to root node.
Top-down approach:
In this an overview of the system is first formulated,
specifying but not detailing any first-level subsystems.
Each subsystem is then refined in yet greater detail,
sometimes in many additional subsystem levels, until the
entire specification is reduced to base elements.
Bottom-up approach:
In this approach the individual base elements of the system
are first specified in great detail. These elements are
then linked together to form larger subsystems, which then
in turn are linked, sometimes in many levels, until a
complete top-level system is formed.
| Is This Answer Correct ? | 248 Yes | 62 No |
Post New Answer View All Answers
Is python better than c++?
Why c++ does not have finally?
What is a storage class?
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
How does work in c++?
Explain the benefits of proper inheritance.
What does it mean to declare a member function as virtual?
What is lambda in c++?
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
Is c++ still in demand?
which of the following is not an secondary constant a) array b) real c) union
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
If a function doesn’t return a value, how do you declare the function?
What is public, protected, private in c++?
Which is most difficult programming language?