WHAT IS ABSTRACT DATA TYPE

Answers were Sorted based on User's Feedback



WHAT IS ABSTRACT DATA TYPE..

Answer / amit

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

Is This Answer Correct ?    7 Yes 1 No

WHAT IS ABSTRACT DATA TYPE..

Answer / hemanthkumar

Abstract is a keyword ,when we use abstract keyword to a method then it is called abstract method,which doesn't having any implementation(having only structure)
if a class having 1 or more abstract methods then that class is called abstract class
ex:
abstract class cal
{
abstract sum()
{}
sub()
{
//implementation
}
}

Is This Answer Correct ?    6 Yes 2 No

WHAT IS ABSTRACT DATA TYPE..

Answer / amit

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

Is This Answer Correct ?    3 Yes 1 No

WHAT IS ABSTRACT DATA TYPE..

Answer / suruthi.s

A data type which is created using abstract data process is
known as abstract data type.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Can true be a variable name in c?

0 Answers  


What is #line in c?

0 Answers  


Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1

0 Answers  


what is void pointer?

1 Answers   Wipro,


What is c method?

0 Answers  






WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *

3 Answers   Infosys, TCS,


What is the difference between far and near in c?

0 Answers  


What does a run-time "null pointer assignment" error mean?

2 Answers  


By using C language input a date into it and if it is right?

0 Answers   Aricent,


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

0 Answers  


what is the benefit of c30

2 Answers  


Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?

1 Answers   Oracle,


Categories