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 pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
How do I write a c++ program?
Is stl open source?
What is object in oop?
Why is c++ a mid-level programming language?
Can recursive program be written in C++?
What is partial specialization or template specialization?
What is extern c++?
Write a C++ Program to check whether a number is prime number or not?
What is abstraction in oops with example?
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
Define a constructor - what it is and how it might be called (2 methods)?
In a function declaration what does extern means?
What do you by Function Overloading in C++?