Computer Applications
Distinguish between Object Oriented Programming and Procedure Oriented Programming
Answer
| Object Oriented Programming | Procedure Oriented Programming |
|---|---|
| The stress is put on data rather than functions. | The stress is put on function rather than data. |
| The data is restricted, to be used in a specific program area. | It allows data to flow freely throughout the program. |
| It follows bottom-up programming approach. | It follows top-down programming approach. |