Module 1:- [Fundamental] OOPS: - Oops stands for object-oriented programing structure/system. Before OOPS we had (POP) Procedure oriented programming structure/system. In POP all the work was processing in a sequence process. It became quite complex when the number of Lines of Code became large. When process increases, then the functionality of code also increases. The complexity also increases in POP. So, in OOPs all the stuff divided into small modules known as the object. Another thing you have to understand that the concept of object-oriented programing is derived from the Real world. The main concept of OOPS is Class and Object. So, let’s see what is class: - Class: - The class is a collection of Data Member and Member Function. Data member are the variables which we declare into the program and Member functions are the functions or method which we declare into the program. Quite confused... ...
Comments
Post a Comment