Monday, 2 November 2020

Object Oriented Programming And Procedure Oriented Programming

 

Object  Oriented Programming  And  Procedure Oriented Programming  



Object  Oriented  Programming :-

Object Oriented Programming  is programming  concept which is focused  on object  rather  than  actions and data  rather than  logic. 

Object Oriented  Programming  concept is  a way  to remove some faults  or  limitations of POP . It puts  much importance on data and  does  not  allow data to move  freely  around the whole  program . OOP binds particular data  and functions of data  in units called  objects which protect  data from getting  motivation  by  other functions.





Procedure Oriented Programming :-

As the name implies, Procedure Oriented Programming  contains step by step  procedure to  execute. Here  the problems get decomposed  into  small  parts and  then  to solve each  part  one or  more functions are  used.




No comments:

Post a Comment

Student Marks Calculation app using java

      import javax.swing. *; import java.awt.event.ActionEvent ; import java.awt.event.ActionListener ; public class Student { private J...