What keyword is used to prevent an object from being serialized?
D.
By placing the keyword transient before an object's declaration, that value will not be included with the serialized data of the parent object.
For example,
class T{ private transient int i; }