What are the OOPS concepts?

Answer Posted / ponnurajesh

OOPs concepts are
1)object
2)class
3)encapsulation
4)abstraction
5)polymorphism
6)inheritance
7)message passing
8)dynamic binding
BASIC CONCEPT OF OOPS:
1.OBJECTS:
An object is an abstraction of a real world entity. It may
represent a person,a placea number and icons or something
else that can be modelled.Any data in an object occupy some
space in memory and can communicate with eachother .
2.CLASSES:
A class is a collection of objects having common
features .It is a user defined datatypes which has data
members as well functions that manupulate these datas.
3.ABSTRACTION:
It can be definr\ed as the seperation of unnecessary
details or explation from system requirments so as to
reduce the complaxities of understanding requirments.
4.ENCAPTULATION:
It is a mechanism that puts the data and function together.
It is bthe result of hiding implimintation details of an
object from its user .The object hides its data to de
accessed by only those functions which are packed in the
class of that object.
5.INHERITANCE:
It is the relationship between two classes of object such
that one of the classes ,the child takes all the relevent
features of other class -the parent.
Inheritance bring about reusablity.
6.POLYMORPHISM:
polymorphism means having many forms that in a single
entity can takes more than one form.Polymorphism is
implemented through operator overloading and function
overloading.
7.DYNAMIC BINDING:
Dynamic binding is the proces of resolving the function to
be associated with yhe respective functions calls during
their runtime rather than compile time.
8.MESSAGE PASSING:
Every data in an objest in oops that is capable of
processing request known as message .All object can
communicate with each other by sending message to each other

Is This Answer Correct ?    173 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is polymorphism and types?

590


2. Give the different notations for the class.\

1576


Why is polymorphism important in oop?

621


Whats is abstraction in oops?

581


what is difference between class template and template class?

2149






Is html an oop?

571


Do you know about multiple inheritance?

631


What is polymorphism in oops?

550


design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)

6131


What do you mean by abstraction?

603


hi all..i want to know oops concepts clearly can any1 explain??

1671


What is object and example?

593


i=20;k=0; for(j=1;k-i;k+=j<10?4:3) { cout<

1409


State what is encapsulation and friend function?

687


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

2023