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

Write a program to print "hello world" without using a semicolon?

0 Answers  


What is diffrance between declaration and defination of a variable or function

4 Answers  


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

0 Answers   Wilco,


A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile

0 Answers  


Difference between exit() and _exit() function?

0 Answers  






What is C language Terminator?

15 Answers   TCS,


We can draw a box in cprogram by using only one printf();& without using graphic.h header file?

4 Answers   NIIT,


Explain the use of #pragma exit?

0 Answers  


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

0 Answers  


here is a link to download Let_Us_C_-_Yashwant_Kanetkar

3 Answers   Microsoft,


b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720

1 Answers   HCL,


write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1

3 Answers  


Categories