What is the difference between virtual functions and pure virtual functions?
A virtual function is a member function of base class which can be redefined by derived class. A pure virtual function is a member function of base class whose only declaration is provided in base class and should be defined in derived class otherwise derived class also becomes abstract.
| Is This Answer Correct ? | 0 Yes | 0 No |
Briefly explain various access specifiers in C++.
What are pass by value and pass by reference?what is the disadvantage of pass by value?
what do you mean by exception handling in C++?
What is C++11?
Write a C++ Program to Check Whether a character is Vowel or Consonant.
How to run C++ program in cmd
Write a C++ Program to Find Sum and Average of n numbers using for loop.
What Are The Differences Between A C++ Struct And C++ Class?
What is Boyce Codd Normal form?
write a program To generate the Fibonacci Series.
When would you use a pointer? A reference?
Write a syntax and purpose of switch statement.