Lecture 04 :- OOPs INTRODUCTION In OBJECT ORIENTED PROGRAMMING
Lecture 04 :- OOPs INTRODUCTION In OBJECT ORIENTED PROGRAMMING OOPS PARADIGM OOP is a better way than a procedural programming language. OOP uses members(variables) and procedures(functions) classes. OOP uses a modular framework for programming. Programmers can build relationships between objects. For examples, Objects can inherit properties for other objects. A developers may simply create a new objects that inherits many of the existing objects features. Its offers powerful and flexible abstraction mechanism. FEATURES OF OBEJECT ORIENTED PROGRAMING Its puts more emphasis on data than on procedure. The programs are divided into objects so you can work with them easily. The data structures are designed to characterize the objects. It has functions that work on the data of an object are placed together in the data structure. The data is hidden and can not be accessed without permission by external functions. With the help of functions , communication between object...