Wednesday, April 4, 2012 BASIC CONCEPTS C LANGUAGE C++ LANGUAGE MAJOR DIFFERENCES Difference Between OOP and POP Difference Between OOP and POP PROCEDURE ORIENTED PROGRAMMING(POP) OBJECT ORIENTED PROGRAMMING(OOP) Top down approach in program design.Bottom up approach in program design.No access specifiers are used. Example: In structure all the members are public.Public,Private,protected Access specifiers are used. Example:In class Data is Private and Functions are public. Larger programs are divided into Functions.Larger programs are divided into entites known as objects.Most of the Functions share global data means data move openly around the system from one Function to another Function.Data is private and Functions inside class can only access the private data. Example of POP is C, FORTRAN.Example of OOP is C++.In POP operator can not be overloaded.In OOP operator can be overloaded by using the concept of operator overloading.Emphasis on doing algorithm means importance is given to the sequence of things to be done i.e algorithm.Importance is given to the data.Objects are very difficult to add in POP.Objects ( i.e data and Functions ) are very easy to add at any time whenever necessary.Procedural in nature.Non-Procedural in nature. Posted by Roky Tweet Related Posts :Detailed Discription of Category of Functions with ExamplesCategory of Functions: We have some other type of Functions where arguments and return value may be … Read More...Detailed overview of C Language Function [Tutorial]Functions: Function is a set of instructions to carry out a particular task. The Function after pro… Read More...Detailed Discription of 2-D Array of C Language[Tutorial]Multidemensional Arrays: If the number of subscripts is more than one, then such Arrays are called M… Read More...Detailed Overview of One-Dimensional Array of C Language [Tutorial] &nb… Read More...Important points about C Language FunctionWe know that Function is very Important part of C Language. With the help of Function Programs are e… Read More...
0 Response to "Difference Between OOP and POP"
Post a Comment