A stream is an object that provides a low-level means to transfer data. They themselves do not act as data containers.
The data that we deal with is in form of byte array(byte []). The functions for reading and writing are all byte orientated, e.g. WriteByte().
There are no functions for dealing w...