employer cover photo
employer logo
employer logo

Susquehanna International Group

Engaged Employer

Susquehanna International Group Interview Question

When using a virtual method, how does the machine know to call the derived class's implementation rather than the base class? (under the hood)

Interview Answers

Anonymous

Dec 2, 2010

virtual table in memory

1

Anonymous

Jan 29, 2011

All objects have an object ID embedded in them. So, the compiler generates code which dynamically binds the object ID to the right derived class's member function.