Multiple choice Which method is not final in Object class? getClass() notify() notify all() hashCode() Reveal answer Fill a bubble to check yourself D Correct answer Explanation This answer is correct. GetClass(), notify(), notify all() and wait() methods in Object class are declared as final. All other methods can be overridden. HashCode() can be overridden in any class.