what are the main underlying concepts of object orientation?

Answers were Sorted based on User's Feedback



what are the main underlying concepts of object orientation?..

Answer / shahir

Mainly there are four concepts for OOAD.
1.Abstraction -grouping of data and behaviour(operations)
into a conceptual object.
2.Encapsulation -Its the implementation mode of data
abstraction.With encapsulation, we can accomplish data
hiding
3.Polymorphism -Polymorphism refers to the process whereby
an object invokes a method of another object in a common
manner (with the same name) without understanding or caring
how it is accomplished.

4.Inheritance-When an object is derived from another
object. It inherits all the properties etc

Is This Answer Correct ?    11 Yes 2 No

what are the main underlying concepts of object orientation?..

Answer / prasi

Abstraction - Interfaces are the best examples of
abstraction .
Encapsulation - Classes are best examples of encapsulation.

Generally we encapsulate what varies &
we abstract commonalities...

One more thing, You should always subclass for behabiours..
you should never subclass for properties / attributes. If
only properties vary, then you have got to encapsulate them
in somewhere else e.g. in a class or in some collection
object like - Properties in Java / Map

Hope this helps..

Is This Answer Correct ?    7 Yes 2 No

Post New Answer

More OOAD Interview Questions

What is the use of destructive method?

0 Answers   Tech Mahindra,


Can an interface inherit from another interface?

0 Answers  


Every object has : state, behavior and identity - explain

2 Answers   InfoAxon Technologies, Protech,


State two differences between an object and a class.

0 Answers   DELL,


Why should project managers complete hard problems first in an OOSAD project?

3 Answers  


What is multiple inheritance? How java 8 supports multiple inheritance?

0 Answers  


What is sealed modifiers?

0 Answers  


what is full form OOP?

0 Answers   Wipro,


What is the diffrence between an abstract class and interface?

0 Answers  


Why is class hierarchies managed in object-oriented programming?

0 Answers  


Tell me something about abstract classes?

0 Answers   TCS,


What is Overloading ? Is it similar to overriding ?

0 Answers   MCN Solutions,


Categories