what is the need of abstraction? what is abstraction?what
is the abstraction for stack?

Answer Posted / vara prasad

Abstraction is nothing but binding the code and data
together to protect the code and data from out side world.

Is This Answer Correct ?    1 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

1685


What do you mean by overloading?

572


how to get the oracle certification? send me the answer

1654


what is difference between class template and template class?

2149


What is oops and why we use oops?

569






What is encapsulation with real life example?

562


What is a superclass in oop?

657


explain sub-type and sub class? atleast u have differ it into 4 points?

1826


What is a null tree?

619


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

3550


What is multilevel inheritance explain with example?

619


Why do we use inheritance?

624


What is polymorphism and types?

592


What does and I oop mean in text?

612


How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction

1647