| |
GeekInterview.com > Interview Questions > Programming > XML
| Print | |
Question: XML and Binary Serialization
Answer: What is XML Serialization and Binary Serialization? Where it actually used? |
| March 03, 2008 01:49:12 |
#1 |
| infoviewmohan |
Member Since: January 2008 Total Comments: 18 |
RE: XML and Binary Serialization |
XML Serialization serializes the object into an xml file. This file is human readable and can be shared with other applications.
Binary serialization is more efficient, but the serialized file is in binary format. It may not make any sense for a human being to open this file and understand what it contains. It is a stream of bytes. |
| |
Back To Question | |