Answer Posted / hrpynux@gmail.com
A virtual function is a member function that you expect to be redefined in derived classes. When you refer to a derived class object using a pointer or a reference to the base class, you can call a virtual function for that object and execute the derived class's version of the function.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to implement is-a and has-a class relationships?
What is virtual function? Explain with an example
Define a constructor?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
What is a string example?
Tell me an example where stacks are useful?
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
What is the full form of ios?
What are c++ variables?
What is flush c++?
Explain data encapsulation?
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
How come you find out if a linked-list is a cycle or not?
What is difference between class and structure in c++?
Differentiate between a constructor and a method in C++.