Definition of Object Oriented Programming in single line?
Answer Posted / brijesh
OOPs is the Programming language in which we intrect with
the object world.And we define our logic inside a class and
take it by object.
| Is This Answer Correct ? | 13 Yes | 6 No |
Post New Answer View All Answers
write a C++ program for booking using constructor and destructor.
What is and I oop mean?
What is encapsulation with real life example?
Can an interface inherit a class?
Is data hiding and abstraction same?
Whats oop mean?
What polymorphism means?
to find out the minimum of two integer number of two different classes using friend function
What is new keyword in oops?
What are the benefits of interface?
What is abstraction in oops?
hi all..i want to know oops concepts clearly can any1 explain??
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is the difference between inheritance and polymorphism?
what are the different types of qualifier in java?