Difference between Top down and bottom up approaches for a
given project ?
Answer Posted / koteraj
Top down design proceeds from the abstract entity to get to
the concrete design. Bottom up design proceeds from the
concrete design to get to the abstract entity.
Top down design is most often used in designing brand new
systems, while bottom up design is sometimes used when one
is reverse engineering a design; i.e. when one is trying to
figure out what somebody else designed in an existing system.
Bottom up design begins the design with the lowest level
modules or subsystems, and progresses upward to the main
program, module, or subsystem. With bottom up design, a
structure chart is necessary to determine the order of
execution, and the development of drivers is necessary to
complete the bottom up approach.
Top down design, on the other hand, begins the design with
the main or top-level module, and progresses downward to the
lowest level modules or subsystems.
Real life sometimes is a combination of top down design and
bottom up design. For instance, data modeling sessions tend
to be iterative, bouncing back and forth between top down
and bottom up modes, as the need arises.
| Is This Answer Correct ? | 105 Yes | 35 No |
Post New Answer View All Answers
Is c the same as c++?
Write a function that swaps the values of two integers, using int* as the argument type?
Explain the difference between class and struct in c++?
What is enum class in c++?
What is the difference between the parameter to a template and the parameter to a function?
What are the advantages of using const reference arguments in a function?
What is the purpose of template?
Write about the use of the virtual destructor?
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num
How do you save a c++ program?
Is empty stack c++?
What is private public protected in c++?
What are friend functions in C++?
What is c++ code?
When should you use global variables?