What is abstraction?

Answer Posted / sree

data abstraction means hiding the unneccessary part
Data abstraction is main feature of c++

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

why reinterpret cast is considered dangerous?

1898


What is the advantage of oop over procedural language?

623


What are the components of marker interface?

600


What is a null tree?

627


how to get the oracle certification? send me the answer

1668






What is abstract class in oops?

598


What are constructors in oop?

587


Give two or more real cenario of virtual function and vertual object

1851


Why is there no multiple inheritance?

565


Why do we use class in oops?

553


What is oops in programming?

562


what are the ways in which a constructors can be called?

1581


IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?

1577


Why multiple inheritance is not allowed?

581


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2164