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
Explain enumerated types.
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Explain high-order and low-order bytes.
Explain what happens if you free a pointer twice?
What are directives in c?
What is atoi and atof in c?
In which header file is the null macro defined?
What is modeling?
What is a method in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What does node * mean?
What is character constants?
What is bubble sort technique in c?
When the macros gets expanded?