Categories
r2013 notes

CS6456 Notes Object Oriented Programming Regulation 2013 Anna University

CS6456 Notes Object Oriented Programming

CS6456 Notes Object Oriented Programming Regulation 2013 Anna University

CS6456 Notes

1.Object–Oriented Programming Concepts:

The important concept of OOPs are:

Objects, Classes, Inheritance, Data Abstraction, Data Encapsulation, Polymorphism, Overloading, Reusability.

Objects:

Object is the basic unit of object-oriented programming. Objects are identified by its unique name. An object represents a particular instance of a class. There can be more than one instance of an object. Each instance of an object can hold its own relevant data.

An Object is a collection of data members and associated member functions also known as methods.

Classes:

Classes are data types based on which objects are created. Objects with similar properties and methods are grouped together to form a Class. Thus a Class represent a set of individual objects. Characteristics of an object are represented in a class as Properties. The actions that can be performed by objects becomes functions of the class and is referred to as Methods.

For example consider we have a Class of Cars under which Santro Xing, Alto and WaganR represents individual Objects. In this context each Car Object will have its own, Model, Year of Manufacture, Colour, Top Speed, Engine Power etc., which form Properties of the Car class and the associated actions i.e., object functions like Start, Move, Stop form the Methods of Car Class. No memory is allocated when a class is created. Memory is allocated only when an object
is created, i.e., when an instance of a class is created.

Inheritance:

Inheritance is the process of forming a new class from an existing class or base class. The base class is also known as parent class or super class, The new class that is formed is called derived class. Derived class is also known as a child class or sub class. Inheritance helps in reducing the overall code size of the program, which is an important concept in object-oriented programming.

Subject Name Object Oriented Programming
Subject Code CS6456
Regulation 2013
File detail PDF of Notes

CS6456 Notes click here to download

Object Oriented Programming Syllabus click here


Object Oriented Programming Question Bank click here


CS6456 important questions click here


Leave a Reply

Your email address will not be published. Required fields are marked *