What does abstract data type means?

Answers were Sorted based on User's Feedback



What does abstract data type means?..

Answer / rini

ADTs allows the creation of instances with well-defined properties and behaviour. In object-orientation ADTs are referred to as classes. Therefore a class defines properties of objects which are the instances in an object-oriented environment.

ADTs define functionality by putting main emphasis on the involved data, their structure, operations as well as axioms and preconditions. Consequently, object-oriented programming is ``programming with ADTs'': combining functionality of different ADTs to solve a problem. Therefore instances (objects) of ADTs (classes) are dynamically created, destroyed and used.

Is This Answer Correct ?    0 Yes 0 No

What does abstract data type means?..

Answer / harjinder kaur

It is set of values and associated operations on those
values where implementation is hidden from the user.

Is This Answer Correct ?    0 Yes 0 No

What does abstract data type means?..

Answer / sanjeev kumar

In computer science, an abstract data type (ADT) is a
mathematical model for a certain class of data structures
that have similar behavior; or for certain data types of
one or more programming languages that have similar
semantics. An abstract data type is defined indirectly,
only by the operations that may be performed on it and by
mathematical constraints on the effects (and possibly cost)
of those operations.[1]

For example, an abstract stack data structure could be
defined by three operations: push, that inserts some data
item onto the structure, pop, that extracts an item from it
(with the constraint that each pop always returns the most
recently pushed item that has not been popped yet), and
peek, that allows data on top of the structure to be
examined without removal. When analyzing the efficiency of
algorithms that use stacks, one may also specify that all
operations take the same time no matter how many items have
been pushed into the stack, and that the stack uses a
constant amount of storage for each element.

Is This Answer Correct ?    1 Yes 1 No

What does abstract data type means?..

Answer / priyadarshee sahoo

it is auseful tool first specifying the logical ptoperty of
data type.the specification of data type includes values of
domain & operation on domain.

Is This Answer Correct ?    0 Yes 0 No

What does abstract data type means?..

Answer / kadhar ali basha e

A set of data values and associated operations that are
precisely specified independent of any particular
implementation.

Is This Answer Correct ?    0 Yes 0 No

What does abstract data type means?..

Answer / lebron james

abstract data types or (ADT)has no perfectly answer except
the who invented it..but for me, the abstract data types is
a questinable question..wish you could find the best answer!!!

Is This Answer Correct ?    0 Yes 1 No

What does abstract data type means?..

Answer / satish

It is set of operations specified with the component of element of data structure and which is implementation independent.

Is This Answer Correct ?    1 Yes 4 No

What does abstract data type means?..

Answer / amit

The code to read the keyboard is an ADT.
ADT
1.Declaration of data.
2.Declaration of operations
3.Encapsulation of data and operations.

it has a data structure,character,and aset of operations
that can be used to read the data structure,also convert it
into different data structures such as integers and strings.

Is This Answer Correct ?    3 Yes 9 No

What does abstract data type means?..

Answer / vaibhav jain

classes uses the concept of data abstraction , known as
abstract data type (ADT) .

Is This Answer Correct ?    2 Yes 8 No

What does abstract data type means?..

Answer / abhishek bharsakale

abstract data type means we can perform different operation
on object or on data

Is This Answer Correct ?    21 Yes 31 No

Post New Answer

More Data Structures Interview Questions

What is the complexity of bubble sort?

0 Answers  


What things you would care about to improve the performance of application if its identified that its db communication that needs to be improved?

0 Answers  


Why do we study data structures?

0 Answers  


Is treeset sorted?

0 Answers  


How long does it take to master data structures and algorithms?

0 Answers  






Tell me about circular linked list?

0 Answers  


Explain the Linked List

0 Answers   Tech Mahindra,


What is complete binary tree and almost complete binary tree?

0 Answers  


What is data structure and why we need it?

0 Answers  


Write the c program to insert a node in circular singly list at the beginning.

0 Answers  


Is quicksort a stable sorting algorithm?

0 Answers  


Write a program for reversing the Single Linked List?

0 Answers   Honeywell, Zomato,


Categories