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 |
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
What is meant by 'bit masking'?
Is it possible to run using programming C for Java Application?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
What are inbuilt functions in c?
Why c is procedure oriented?
What are valid signatures for the Main function?
write a c program to add two integer numbers without using arithmetic operator +
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
Explain the ternary tree?
Write a programe print the sum of series 0,1,2,.....10
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.