Difference between Top down and bottom up approaches for a
given project ?
Answer Posted / shahidnx
First thing Top down and bottom up are designing approaches.
As simple, in top down approach,first we are designing the
main module(i.e main function) and in that we will decide
what all other modules to be include then we will design all
other sub modules..this approach is used C prog language.
In bottom up approach, just contrast to top down,first we
design all the sub modules related to application then we
design main module and in that we will decide what are the
modules to be include.. for ex: we can design any no of
classes and in main only required classes and their
functions can be used ...this approach is used in c++ ......
| Is This Answer Correct ? | 109 Yes | 12 No |
Post New Answer View All Answers
Can a class be static in c++?
What are maps in c++?
What is the use of default constructor?
Difference between a homogeneous and a heterogeneous container
What is the use of endl?
What is a storage class?
Differentiate between a constructor and a destructor in c++.
Name the debugging methods that are used to solve problems?
Is swift a good first language?
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
Explain the static member function.
How do you establish an is-a relationship?
What are stacks?
What is name hiding in c++?
When you overload member functions, in what ways must they differ?