Suppose you are writing a class that provides custom deserialization.
The class implements java.io.Serializable and not java.io.Externalizable.
What method should implement the custom deserialization, and what is its access mode?
readObject()
readObject()
readExternal()
readExternal()
A.
The readObject()
method must be private.