what are abstract classes and how they impliment , with
example
Answer Posted / rdl
A class with atleast one pure virtual function is called
abstract class.It cant be instatiated.It can be used as a
base class for other classes. The class derived from an
abstract base class can be instantiated,provided it should
implement the abstract base class pure virtual function.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is polymorphism oop?
What is encapsulation with real life example?
What is the main feature of oop?
What is property in oops?
What are the important components of cohesion?
What are oops methods?
How do you achieve runtime polymorphism?
to find out the minimum of two integer number of two different classes using friend function
What do you mean by abstraction?
What is oops?what is its use in software engineering?
Explain the advantages of inheritance.
What is the highest level of cohesion?
Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box
What is encapsulation example?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?