+ 1
Because when we use 'final' keyword with a method or a variable, we cannot change the value of the variable, the parameters of the method and also the definitions of method. Overriding says that ''lets make the method run by the way we want'' and it achieves it by changing the definition of method but 'final' doesn't allow it hence you cannot override the method declared as 'final'



