C++ Programming - OOPS Concepts - Discussion

Discussion Forum : OOPS Concepts - General Questions (Q.No. 15)
15.
Which of the following is an abstract data type?
int
double
string
Class
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
20 comments Page 1 of 2.

Sanket said:   8 years ago
An Abstract class means class which contains pure virtual function as a pure virtual function is having address zero if we try to create an object for the abstract class there is a chance to call pure virtual function which leads to segmentation fault so the object is restricted for abstract class.
(3)

Vedi G said:   5 years ago
In a class one pure virtual function is there that is call abstract class.
Pure virtual class means [virtual void add()=0;]
(1)

Pooja said:   9 years ago
According to me abstract means its hides the operation being performed in it. Class functions are abstract to us.

Saurabh Sakharkar said:   9 months ago
In the context of object-oriented programming, a class is considered an abstract data type (ADT). A class encapsulates data and functions into a single unit, allowing the user to create objects with specific properties and behaviors.

Shubham sharma said:   5 years ago
Abstract data type and abstract function are different.

Ranjith said:   8 years ago
Please describe the abstract data type.

Logi said:   8 years ago
An abstract class has no objects.

Aishwarya said:   8 years ago
Give a real life example for abstract data type.

Priya said:   8 years ago
I can't understand what it meant by abstract data type?

Varun said:   8 years ago
What is missing here? How the literal meaning of abstract and the class definition together make a new meaning? Please explain clearly.


Post your comments here:

Your comments will be displayed after verification.