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 does %c mean in c?
In c language can we compile a program without main() function?
What are reserved words?
who developed c and why he developed c?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
Do variables need to be initialized?
provide an example of the Group by clause, when would you use this clause
What is a const pointer in c?
Wt are the Buses in C Language
Why can’t constant values be used to define an array’s initial size?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.