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

WAP to convert text into its ASCII Code and also write a function to decode the text given?

2 Answers  


Write a C program to convert an integer into a binary string?

1 Answers  


What 'lex' does?

0 Answers   Tech Mahindra,


How many identifiers are there in c?

0 Answers  


What do you mean by team??

5 Answers   Student,






we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

0 Answers  


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

0 Answers   Wilco,


what is the difference between postfix and prefix unary increment operators?

3 Answers  


Not all reserved words are written in lowercase. TRUE or FALSE?

0 Answers  


Write a program in C to reverse a number by recursive function?

1 Answers  


Why c language is called c?

0 Answers  


What are void pointers in c?

0 Answers  


Categories