A method is defined in a class as : void processUser(int i) { } If this method is overriden in a sub class,
the new method should return int
the new method can return any type of values
the argument list of new method should exactly match that of overriden method
the return type of new method should exactly match that of overriden method