Hi Vivek,
Late-binding of the method is necessary for the polymorphism, but the static methods are bounded by the compiler (early-binding). This shows that you can not use the concept of polymorphism in the case of static methods. But yes, it can be overriden 'coz overriding and polymorphism are not the same thing.
------------------