Skip to main content

Posts

Showing posts from August, 2013

Characteristics of Object-Oriented Programming( OOP ) and Procedure Oriented Programming ( POP )

Procedure Oriented Programming Object-Oriented Programming Divided Into In POP, the program is divided into small parts called  functions . In OOP, the program is divided into parts called  objects . Importance In POP, Importance is not given to  data  but to functions as well  the  sequence  of actions to be done. In OOP, Importance is given to the data rather than procedures or functions because it works in the  real world . Importance In POP, Importance is not given to functions. In OOP, Importance is given to the data. Approach POP follows  a Top-Down approach . OOP follows the  Bottom-Up approach . Access Specifiers POP does not have any access specifier. OOP has access specifiers named Public, Private, Protected, etc. Data M...