Computer Science, asked by Anonymous, 1 month ago

differcence between a top down and bottom up approach in computer​

Answers

Answered by pradhanshive
3

Answer:

Top down approach starts with the big picture. It breaks down from there into smaller segments. A bottom-up approach is the piecing together ofsystems to give rise to more complex systems, thus making the original systems sub-systems of the emergent system.

Answered by Anonymous
3

Answer:

TOP DOWN APPROACH:

★ In this approach We focus on breaking up the problem into smaller parts.

★Mainly used by structured programming language such as COBOL, Fortran, C, etc.

★Each part is programmed separately therefore contain redundancy.

★In this the communications is less among modules.

★It is used in debugging, module documentation, etc.

★In top down approach, decomposition takes place.

★In this top function of system might be hard to identify.

★In this implementation details may differ.

BOTTOM UP APPROACH:

★In bottom up approach, we solve smaller problems and integrate it as whole and complete the solution.

★Mainly used by object oriented programming language such as C++, C#, Python.

★Redundancy is minimized by using data encapsulation and data hiding.

★In this module must have communication.

★It is basically used in testing.

★In bottom up approach composition takes place.

★In this sometimes we can not build a program from the piece we have started.

★This is not natural for people to assemble.

hope it helps ✔︎✔︎✔️★.

Similar questions