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
What do you mean by inheritance in c++? Explain its types.
What is the purpose of ios::basefield in the following statement?
What is conditions when using boolean operators?
How does the copy constructor differ from the assignment operator (=)?
What does it mean to declare a member variable as static?
Explain the difference between new() and malloc() in c++?
When is the destructor called?
Explain container class.
Where must the declaration of a friend function appear?
Show the declaration for a static function pointer.
Describe private, protected and public – the differences and give examples.
What are friend classes? What are advantages of using friend classes?
Is sorted c++?
What are multiple inheritances (virtual inheritance)?
Write about an iterator class?