Ask Question

What is an abstract data type?

+4
Answers (1)
  1. 26 September, 10:15
    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?
Find an answer to your question 👍 “What is an abstract data type? ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers