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
Can constructor be private in c++?
What are the advantages of using pointers in a program?
what is COPY CONSTRUCTOR and what is it used for?
List the special characteristics of constructor.
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
Can we use clrscr in c++?
What is private inheritance?
How do you declare A pointer to a function which receives nothing and returns nothing
A company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9 percent of their gross sales for that week. For example, a saleperson who sells $5000 worth of merchandise in a week receives $200 plus 9 percent of $5000, or a total of $650. You have been supplied with a list of items sold by each salesperson. The values of these items are as follows: Item Value A 239.99 B 129.75 C 99.95 D 350.89 Write a program that inputs one salesperson's items sold in a week (how many of item A? of item B? etc.) and calculates and displays that salesperson's earnings for that week.
What do you understand by pure virtual function? Write about its use?
What is a singleton class c++?
What is meant by const_cast?
Does c++ cost money?
What is the use of endl in c++ give an example?
What are the uses of pointers?