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
Is python better than c++?
Discuss the possibilities related to the termination of a program before entering the mainq method?
Explain how to initialize a const member data.
Is c++ fully object oriented?
What is general form of pure virtual function? Explain?
What is #include sstream?
What are the 4 types of library?
What does obj stand for?
We use library functions in the program, in what form they are provided to the program?
Is c++ the best programming language?
Explain what are the sizes and ranges of the basic c++ data types?
What are the advantages of using const reference arguments in a function?
What is const in c++?
What is binary search in c++?
Why is the function main() special?