

Scene 11 of Data Structures in Core Technical Interview Questions for Software Engineers
By Amin Ariana — April 2011
Serialize a list of strings into a byte array. Then deserialize it.
Problem Statement
Serialize a list of strings into a byte array. Then deserialize it.
Evaluation
- Serialize Strings to a byte array (25%)
- Be memory efficient (25%)
- Serialize in such a way that enough data exists to deserialize unambiguously (25%)
- Deserialize and test (25%)
References
Maarten from Google