What are the OOPS concepts?
Answer Posted / dinesh puri
1.Object:
An Object is a computer representation of some real-world
thing (i.e person, place) or event. Objects can have both
attributes and behaviours
2.class:
Objects with the same data structure (Attributes) and
behavior (Methods or Operations) are grouped together
(called a class ).
3.Encapsulation:
Encapsulation (or information hiding) is a principle, about
hiding the details of the implementation of the interface.
It is to reveal as little as possible about the inner
workings of the Interface.
4.inheritance:
As objects do not exist by themselves but are instances of
a CLASS, a class can inherit the features of another class
and add its own modifications. (This could mean
restrictions or additions to its functionality).
Inheritance aids in the reuse of code.
Classes can have 'Children' that is, one class can be
created out of another class. The original or parent class
is known as the SuperClass (or base class). The child class
is known as the SubClass (or derived class).
5.poymorphism:
Polymorphism means the ability to request that the same
Operations be performed by a wide range of different types
of things.
Effectively, this means that you can ask many different
objects to perform the same action
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why do we need oop?
What is the example of polymorphism?
What language is oop?
why reinterpret cast is considered dangerous?
what is graphics
write string class as your own class in java without using any built-in function
What is inheritance write a program to show use of inheritance?
What is the main feature of oop?
Where You Can Use Interface in your Project
How do you achieve runtime polymorphism?
Why do we use oops?
What is encapsulation and abstraction? How are they implemented in C++?
Can we define a class within the interface?
What is meant by multiple inheritance?
Can enum be null?