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
What is std :: flush?
Define private, protected and public access control.
What is main function in c++ with example?
Describe delete operator?
Difference between a copy constructor and an assignment operator.
What is the difference between ++ count and count ++?
Explain dangling pointer.
What are the types of array in c++?
How do you flush a buffer in c++?
What is flag in computer?
Explain the use of this pointer?
What is scope in c++ with example?
What is function prototyping? What are its advantages?
What are c++ redistributables?
Should a constructor be public or private?