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
What is a void pointer in c?
What are the application of c?
Explain the use of keyword 'register' with respect to variables.
What does c mean in standard form?
How do you define CONSTANT in C?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is the meaning of c in c language?
What is pass by reference in functions?
What are the advantages of using new operator as compared to the function malloc ()?
What is the general form of function in c?
What are structure types in C?
What do you mean by keywords in c?
What is a struct c#?
What are the advantages of union?