Difference between Top down and bottom up approaches for a
given project ?

Answers were Sorted based on User's Feedback



Difference between Top down and bottom up approaches for a given project ?..

Answer / maithri

While top down design starts from abstract to finally achieve a solid design, bottom up approach is just the reverse as it begins with the concrete design to get to abstract entity. When it comes to designing brand new systems, it is top down approach that is most commonly employed. On the other hand, in the case of reverse engineering as when it is the goal to understand someone else’s design, bottom up approach is utilized.
Bottom-up approach proceeds with the design of lowest level module or subsystem, to the highest module or subsystem. One needs a structure chart to know the steps involved in execution. Also needed are drivers to complete this type of designing.
Top-down approach starts with the top level module and progresses downward to the lowest level module. In reality however, no system is followed rigidly and designers tend to bounce back and forth between these two approaches as the need may be.
There are pros and cons of both the approaches. If we talk of advantages of a top down approach, it is easy to visualize, provides sense of completeness, and it is easy to assess the progress at any stage. On the downside, being a UI driven approach, there are chances of redundant business logics.
On the other hand, in a bottom-up approach, user has the advantages of solid business logic, ability to write good unit test and the ease with which changes can be managed and modified. Its disadvantages are that a lot of effort is required to write test cases and the progress cannot be verified easily at the mid stage.

Is This Answer Correct ?    5 Yes 9 No

Difference between Top down and bottom up approaches for a given project ?..

Answer / venkateswarlu p

Top down design is begins the design with the main module or
top-level module, and progresses downward to the lowest
level modules or subsystems.

Bottom up just opposite to that i.e design with sub modules
or lowest level modules to main module.

Is This Answer Correct ?    25 Yes 38 No

Difference between Top down and bottom up approaches for a given project ?..

Answer / aanchal

i don't no have any give answer to this question?????

Is This Answer Correct ?    11 Yes 26 No

Difference between Top down and bottom up approaches for a given project ?..

Answer / justdance

top is on top while down is on top down like up and down ..

Is This Answer Correct ?    17 Yes 72 No

Post New Answer

More C++ General Interview Questions

Is string data type in c++?

0 Answers  


What programming language should I learn first?

0 Answers  


Why cstdlib is used in c++?

0 Answers  


What is the topic of the C++ FAQ list?

1 Answers  


What is dangling pointers?and what is memory leak?

5 Answers  






What is a down cast?

0 Answers  


Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?

1 Answers  


what is the behaviour of C and C++ compiler for the below statements. int *p; p = malloc(100); Is the behaviour same ? or different ?

2 Answers  


A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.

0 Answers  


Are iterators pointers?

0 Answers  


How can virtual functions in c++ be implemented?

0 Answers  


can output 5 students using one dimensional array

1 Answers   Intel,


Categories