Intel Corporation Interview Question

In C++, what does the virtual keyword actually mean?

Interview Answer

Anonymous

Apr 14, 2011

Typically is used to express polymorphism in C++. Change the base-class behavior of a method, as part of an inheriting child class, while keeping the same prototype definition.

2