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 |
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
How was c created?
How to reverse a string using a recursive function, with swapping?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
What is adt in c programming?
how to swap four numbers without using fifth variable?
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
What is difference between structure and union?
How will you find a duplicate number in a array without negating the nos ?
What are the parts of c program?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv