Design Patterns Question:
Download Job Interview Questions and Answers PDF
What is difference between Function Oriented Design and
Object Oriented design?
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.
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 Interview Questions And Answers
PDF
Previous Question | Next 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? |