POP vs OOP

Difference Between Procedure Oriented Programming (POP) & Object Oriented Programming (OOP) Procedure Oriented Programming Object Oriented Programming 1 Programs are divided into small parts called functions. Programs are divided into parts called Class. 2 Importance is not given to data but to functions as well as sequence of actions to be done. Importance is given to the data rather than procedures or functions because it works as a real world. 3 POP follows Top Down approach. OOP follows Bottom Up approach. 4 POP does not have any access specifier. OOP…

Read More