Posts

Showing posts from January, 2023

Lecture 04 :- OOPs INTRODUCTION In OBJECT ORIENTED PROGRAMMING

Image
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

Lecture 3 :- DIFFERENCE BETWEEN OO AND PO PRADIGMS

Image
Lecture 3 :- DIFFERENCE BETWEEN OO AND PO PRADIGMS OBJECT ORIENTED PARADIGMS 1.Program is divided into small parts called objects. 2. It follows bottom up approach. 3.It have access specifiers like public , private, protected. 4.Adding new data and function is easy. 5.It provides data hiding so it is more secure 6. It is based on real world. 7. Object oriented programming support overloading features. 8. e.g. C++, Java, Python, c# etc. PROCEDURE ORIENTED PARADIGM 1.Program is divided into small parts called Functions. 2. It Follows Top Down Approach. 3. There is no access specifiers in procedural programming 4.Adding new data and function is not easy. 5. It does not have any way for data hiding so it less secure. 6. It is based on unreal world. 7. Procedure oriented programming does not support overloading feature. 8. e.g. C, FORTRAN, Pascal , Basic etc. Object Oriented Programing #PLAYLIST. #Subscribe the Channel Link :- #bansodetechsolution #ajup

Lecture - 2 OBJECT ORIENTED PRGRAMMING In OBJECT ORIENTED PRGRAMMING

Image
Lecture - 2 OBJECT ORIENTED PRGRAMMING In OBJECT ORIENTED PRGRAMMING WHAT IS OBJECT ORIENTED? -Object oriented programming oop language is used to create objects. -In the development of the program, oop data is treated as a critical element and restricted. -Flow around system. -It more closely ties the data to the function that operates on it and protects it from accidental modification from external functions. -It allows the problem to break into a number of objects and then build data and functions around these object. -However, the function of the one object can access the functions of other objects if necessary. -Example a car is an object which has certain properties such as colour number of door and the like. It also has certain methods such as accelerate brake and so on. WHAT IS OBJECT ORIENTED DEVELOPMENT? -Object oriented development decreases development time and resources required to maintain existing applications, improve code reuse, and provide a competit

Lecture-1 :- Procedure Oriented Programming in Object Oriented Programing

Image
Lecture-1 :- Procedure Oriented Programming in Object Oriented Programing INTRODUCTION -Procedure-oriented programming (pop) follow the sequence of things to do like reading, calculating and printing. -To calculate these tasks, a number of function are written. -POP focuses on functions. -POP consists of a list of computer instructions to be followed and organized into groups knows as functions. -Most important data items are placed as global in a multi-function program so that all the function can be accessed. -Each function may have local data of its own. -Global data is more vulnerable to an inadvertent change by a function. -It isn’t very good model of real world problem. CHARACTERISTICS OF POP -Data can be transformed form one function to another. -It follow Top-Down approach for writing program. -Large programs are split into smaller components knows as functions. -Most of the function share global data. -Data transfer from function to function openly around t