Which of the following method(s) from Object class can be overridden? (select all that apply.)
finalize()
methodclone()
methodgetClass()
methodnotify()
methodwait()
methodA.
The methods finalize()
and clone()
can be overridden.
The methods getClass()
, notify()
, and wait()
are final methods and so cannot be overridden.