Answer Posted / rajaneesh
It can be defined as the seperation of unnecessary
details or explation from system requirments so as to
reduce the complaxities of understanding requirments.
For example a person who is driving a car doesn't need to
know the mechnical works that have been done to make a
car... so what all the driver is to do is just drive.. ie
move start and stop....
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is object and example?
What is abstraction example?
What is the types of inheritance?
What is persistence in oop?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
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 are classes oop?
Why interface is used?
What is abstraction encapsulation?
What is the purpose of polymorphism?
write a program to find 2^n+1 ?
What is the diamond problem in inheritance?
What does I oop mean?
Can we define a class within the interface?
Why is it so that we can have virtual constructors but we cannot have virtual destructors?