Home - procedural oriented programming - Object oriented programming.
PROCEDURAL ORIENTED PROGRAMMING
✓ Program is divided into small parts called functions.
✓ procedural programming follows top down approach.
✓ Adding new data and functions is not easy.
✓ Procedural programming does not have any proper way for hiding data so it is less secure
✓ Example :- C, Fortran , Pascal , Basic ,etc.
OBJECT ORIENTED PROGRAMMING
✓ Program is divided into small parts called Objects.
✓ Object oriented programming Follows bottom up approach.
✓ Adding new data and functions is easy.
✓ Oop provides data hiding so it is more secure.
✓ Example :- C++, Java , python, C.
0 Comments