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 is void pointer in c++ with example?
What is the best way to declare and define global variables?
Why do we need function?
What is a flag in c++?
Refer to a name of class or function that is defined within a namespace?
Is c++ primer good for beginners?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
What do you mean by volatile and mutable keywords used in c++?
Can we use this pointer inside static member function?
What is a type library?
If you hear the cpu fan is running and the monitor power is still on, but you did not see anything show up in the monitor screen. What would you do to find out what is going wrong?
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
Differentiate between declaration and definition.
Is java made in c++?
What are the uses of pointers?