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
Explain the volatile and mutable keywords.
What is an adjust field format flag?
Which ide is best for c++?
Can notepad ++ run c++?
How can you differentiate between inheritance and implementation in c++?
What is encapsulation in C++? Give an example.
What is the difference between global variables and local variable
Explain what you mean by a pointer.
What is microsoft c++ redistributable 2013?
Which software is used to run c++ program?
What is the best free c++ compiler for windows?
Name the implicit member functions of a class.
Can I have a reference as a data member of a class? If yes, then how do I initialise it?
Are strings immutable in c++?
Why do we need pointers?