Which of these keywords can be used to prevent Method overriding?
constant
final
static
protected
None of these
Correct Option: B
To disallow a method from being overridden, specify final as a modifier at the start of its declaration. Methods declared as final cannot be overridden.