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
Differentiate between late binding and early binding. What are the advantages of early binding?
How much do coding jobs pay?
What causes a runtime error c++?
Which software is best for coding?
Tell me what are static member functions?
Define what is constructor?
What are the operators in c++?
What are pointers used for c++?
What is #include ctype h in c++?
Can a program run without main?
What is the iunknown interface?
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
What operator is used to access a struct through a pointer a) >> b) -> c) *
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
What are the uses of pointers?