WHAT IS ABSTRACT DATA TYPE
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
is it possible to change the default calling convention in c ?
What does char * * argv mean in c?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
What is meant by operator precedence?
who did come first hen or agg
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
What are the similarities between c and c++?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
Explain what a Binary Search Tree is.
What does s c mean on snapchat?
What does 4d mean in c?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.