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 |
What is Boyce Codd Normal form?
What are pass by value and pass by reference?what is the disadvantage of pass by value?
What does it mean to declare a member function as virtual in C++?
Define an Abstract class in C++?
What does it mean to declare a member function as static in C++?
What is Advantage and Use of THIS pointer in C++ – Scenarios?
Write a C++ Program to Check Whether a character is Vowel or Consonant.
How will you print a list of all unique words from a string which may contain repeated words?
What are Agilent PRECOMPILERS?
Explain about Searching and sorting algorithms with complexities
Is deconstructor overloading possible? If yes then explain and if no Then why?
What is the difference between malloc, calloc and realloc?