what is diffrence between Function Oriented Design and
Obeject Oriented design
Answer Posted / bijumon v g
In a program, there is DATA and function/procedure. In both
design, the functions are arranged in a particular order so
that desired requirements are properly implemented. Main
difference between them lies in the case of
accessing/changing the data. In FOD, only scope
(global/local etc)controls whether a function can
access/change the data. But in OOD, inspite of the scope,
there is access modifiers (private/protected/public) -
encapsulation/data hiding - which restricts to
access/change the data.
| Is This Answer Correct ? | 7 Yes | 9 No |
Post New Answer View All Answers
What are the most popular design patterns?
what are the creational design patterns
What are the differences between the design patterns and the framework?
What is use case in clean architecture?
What is meant by design pattern?
What is a behavioral design pattern?
What is single tone design pattern in java?
What is the difference between factory and builder design pattern?
Give me example of chain of responsibility design pattern?
Is singleton a design pattern?
What is the prototype design pattern?
Why do we need singleton pattern?
What are the 23 design patterns?
Is singleton bean thread safe?
What is difference between function oriented design and object oriented design?