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
Is it cc or c in a letter?
What is use of bit field?
what do you mean by enumeration constant?
Is there any data type in c with variable size?
How do you determine a file’s attributes?
What are directives in c?
What is an arrays?
Explain how does flowchart help in writing a program?
What is the difference between local variable and global variable in c?
What is bubble sort technique in c?
How can I call a function with an argument list built up at run time?
Is using exit() the same as using return?
What are dangling pointers in c?
Can we assign integer value to char in c?
How can I do graphics in c?