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
When does the c++ compiler create temporary variables?
Differentiate between an inspector and a mutator ?
What do you mean by persistent and non persistent objects?
How do I download c++?
What are the two types of comments?
Why c++ is faster than java?
Explain how overloading takes place in c++?
What do you mean by public protected and private in c++?
Write a program to interchange 2 variables without using the third one.
What is a dangling pointer in c++?
What are the vectors in c++?
What is buffer and example?
What can c++ be used for?
What is the difference between the functions rand(), random(), srand() and randomize()?
Should I learn c++ c?