what is oops
Answers were Sorted based on User's Feedback
Answer / rohit jindal
Object oriented programming language allow us to think the
real world in term of object.Object is a collection of data
and functionwhich operate on that data. It provides the
concepts of classes which is a template from which we can
churn out as many object as we want of similar behviour.It
provide the concepts of
polymorphism,inheritance,encapsulation etc.
| Is This Answer Correct ? | 29 Yes | 1 No |
Answer / rekha
OOps is the object oriented programming concept here we
create a class and access the class using the object.
Class is the collection of data members and member function.
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / kaush
oops is a programming language for making program to more
secure,easy and mostally object oriented.
it is use mostly for security purpose.
| Is This Answer Correct ? | 2 Yes | 1 No |
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
What is the real time example of inheritance?
How is data security provided in Object Oriented languages? ?
What is the purpose of polymorphism?
How to call a non virtual function in the derived class by using base class pointer
What does and I oop mean in text?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
Why do we use polymorphism in oops?
Write a program to multiply 3x3 matrics
What is difference between polymorphism and inheritance?
Can an interface inherit a class?
What does enum stand for?