Difference between Top down and bottom up approaches for a
given project ?
Answer Posted / rahul agrawal
Simplest and main difference is...this two are process of solving program........
So in top down it breaks the main program in sub programs then all the sub programs are being solved then after solving it merge them all in one function to provide exact output.....so 1st we have top as a main function ok...then we break it into sub function can be taken as down...so it approach as top to down...
In the same way in c++....program is already in sub functions....it directly solve this problems and merge them together for exact output....so what is happening here that Bottom as a sub function and Up as a merge function..so it approach as bottom to up.....
....Thanks 4 reading
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
Why use of template is better than a base class?
True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
What is isdigit c++?
What are the two types of polymorphism?
What is virtual base class?
When do you call copy constructors?
What is vector pair in c++?
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Describe public access specifiers?
Can I learn c++ as my first language?
Is linux written in c or c++?
Where the memory to the static variables is allocated?
Explain bubble sorting.
Describe Trees using C++ with an example.