This is method of thinking to resolve the problem ( implimenting the applicaiton using software languages).            - POP : Procedure thinking  ( modular approach of solve the problem)         -OOP : Object Thinking ( object oriented thinking to solve the problem).
RE: difference between object-oriented programming an...
In Procedural programming,Programmer combines related sequences of statements
into one single place, called procedure. A procedure call is used to invoke the
procedure. After the sequence is processed, flow of control proceeds right after
the position where the call was made. But the approach in oops is that classes
and objects are used to model real world entity taking help of methods which
performs the functions.
Emphasis is laid on tasks in prod. approach whereas in oops concept emphasis
is on things that does the tasks.
RE: difference between object-oriented programming an...
Procedure oriented programming - Gives importance to algorithm rather than data. It follows Top-down structures.
example : Pascal and C
Object oriented programming - Gives importance to data rather than algorithm. It follows Bottom-up structures.Every thing is viewed as an object.It includes features like data hiding, polymorphism,encapsulation and message passing.
RE: difference between object-oriented programming an...
This is method of thinking to resolve the problem ( implimenting the applicaiton using software languages).            - POP : Procedure thinking  ( modular approach of solve the problem)         -OOP : Object Thinking ( object oriented thinking to solve the problem).