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 should malloc() do?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
What is a nested loop?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
How many types of functions are there in c?
What does s c mean on snapchat?
What is #ifdef ? What is its application?
which type of question asked from c / c++ in interview.
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
can we change the default calling convention in c if yes than how.........?
Explain what is a 'locale'?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .