WHAT IS ABSTRACT DATA TYPE

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the use of bit fieild.

716


Can you please compare array with pointer?

618


Explain how can I read and write comma-delimited text?

660


How can I direct output to the printer?

814


What is the use of static variable in c?

596






What is floating point constants?

694


Explain the Difference between the New and Malloc keyword.

689


What is array of pointers to string?

571


Where can I get an ansi-compatible lint?

643


What is the value of uninitialized variable in c?

577


Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings

2252


What is the difference between fread buffer() and fwrite buffer()?

675


Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

3845


What is the difference between c and python?

587


provide an example of the Group by clause, when would you use this clause

1710