*********************************************************************************************************************** The process of converting system representation to network representation is called an marshalling. The process of converting data from network representation to sysytem representation is called un marshalling. ************************************************************************************************************************ Serialization: ================ the process of seprating data from an object is called serialization. or -> The process of writing state of an object to a file is called Serialization. -> But strictly speaking, it is a process of converting an object from java supported form to either file supprted form or network supported form or database supported form is called Serialization. -> By using FileOutputStream and ObjectOutputStream, we can achieve Serialization. It is meant for default Serialization. ...