Design Patterns Question: Download Design Patterns PDF

What is difference between Function Oriented Design and
Object Oriented design?

Tweet Share WhatsApp

Answer:

Function oriented design is dividing a bigger problem set
to small functional units and then
structure/organize/sequence these functional units to
design the solution.
OOD is identifying objects (entities) involved in the
system and designing solution based on their relationships
and interactions.
FOD approach is mainly used for computation sensitive
application, whereas OOD approach is mainly used for
evolving system which mimicks a business process or
business case.

Download Design Patterns PDF Read All 18 Design Patterns Questions
Previous QuestionNext Question
What is design pattern?Suppose we have file(ps), dont know how many records are there. move half of the records to 2 files. how can we do?