Answer Posted / naveen kumar
Abstract classes are classes that contain one or more abstract methods. Abstract method is a method that is declared, but contains no implementation. Abstract classes may not be instantiated, and require subclasses to provide implementations for the abstract methods.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are multiple inheritances (virtual inheritance)?
Write bites in Turbo c++ Header ("Include") Files.
What is the use of typedef?
What is stream in oop?
What size is allocated to the union variable?
Which software is used for c++ programming?
What is a constructor and how is it called?
What is difference between malloc()/free() and new/delete?
Why iomanip is used in c++?
what is a class? Explain with an example.
How many ways can a variable be initialized into in C++?
What is an algorithm (in terms of the STL/C++ standard library)?
Are strings immutable in c++?
What is the full form of oops?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that