How is an Abstract Base Class(ABC) related to an "Abstract
Data Type" (ADT)
Answer Posted / guest
An ADT is a concept - the basic idea of a data type that
doesn't specify how the data type is implemented.
An ABC is a method C++ provides for creating an ADT.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is c++ array?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
Which programming language is best?
Write about the scope resolution operator?
What is encapsulation in c++?
Why is c++ so fast?
Is c++ the hardest programming language?
Describe friend function & its advantages.
What character terminates all character array strings a) b) . c) END
Tell me can a pure virtual function have an implementation?
Which function should be used to free the memory allocated by calloc()?
What is the difference between while and do while loop?
Comment on assignment operator in c++.
Do inline functions improve performance?
Incase of a function declaration, what is extern means?