What are the OOPS concepts?
Answer Posted / razz rohit
1)Object-Instance of the class
2)Classes-Combination of Data members and member functions
3)Data Abstraction-Abstracting the data and functions from
unwanted users.
4)Data Encapsulation-Wrapping up of Data members and member
functions.
5)Inheritance-Passing the values from one object to anther
object.
6)Message Passing-Messages can possible from one object to
anther object
7)Polymorphism-its like function over loading.
Poly-Many, morphism-Forms
8)Robust and Securisam-its for security purpose
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is polymorphism explain its types?
Is this job good for future? can do this job post grduate student?
What is encapsulation in oop?
Which method cannot be overridden?
Why is it so that we can have virtual constructors but we cannot have virtual destructors?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What is solid in oops?
class type to basic type conversion
What are objects in oop?
What is the difference between a mixin and inheritance?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
How is polymorphism achieved?
Can we define a class within the interface?
Why do we need polymorphism in c#?