How is an Abstract Base Class(ABC) related to an "Abstract
Data Type" (ADT)
Answers were Sorted based on User's Feedback
Answer / sujith
An ADT is a concept. I agree with that. basic example a
class itself.
But Abstract Base Class is something which has a pure
virtual function in that. That means, u cannot create an
objext of this class. But what is possible is, this class
can be inherited and u can have a pointer of this class and
have runtime polimorphism.
In simple terms, all classes that contain at least one pure
virtual function are abstract base classes.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / 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 |
How do you sort a sort function in c++ to sort in descending order?
What are the advantages of using a pointer?
Is it possible for the objects to read and write themselves?
What is a singleton c++?
What are structures and unions?
What is decltype c++?
Why are arrays usually processed with for loop?
How can we read/write Structures from/to data files?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
What is split a string in c++?
Define a nested class.
When there is a global variable and local variable with the same name, how will you access the global variable?