⟩ Can you please explain the order in which constructors are called when an object of a derived class is created?
The constructors of any virtual base classes are called first in the order of inheritance.
Non-virtual base class constructors are called next.
The derived class constructor is called last.