Hi all,
Create a child class object and assign it to Parent reference.
Now call any static method that has same signature in both the classes(parent & child), ur parent static method will be called since ur reference is of parent type.....
Even though ur object is of child type.... the binding happened during compile time and during compile time the compiler knows only about the type of reference(parent) not the object(child) to which it is refering to.That is why ur parent static method will be called.