Ask Question
27 March, 06:49

What is an abstract data type?

+5
Answers (1)
  1. 27 March, 07:56
    0
    Abstract data type is a datatype which hides all the implementation details to the end user.

    Explanation:

    Class is an abstract data type in object oriented programming. Class abstracts both data members and member functions implementation. Here we can hide some confidential data from end user using access specifier "private". We can make end user access only the data which is marked as "public".

    example:

    public class Calculate

    {

    private int salary;

    public int workingHours;

    public int reatePerHour;

    public void Calcuate () {

    int total=workingHours*reatePerHour;

    cout<
    }

    }

    Here class calculates hides the implementation details of the method "Calculate". We are abstracting implementation details to the end user using "Class" data type. So it is an AbstarctDataType
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is an abstract data type? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers