I am looking into web examples of Byte Array. Now from below statement i understand that I am creating a Byte Array which can stone 1024 values by why 1024 is always used in any of byte array example i found on internet?
byte[] byteBuffer = new byte[1024];
Value "1024" can be anything depending upon my requirements, Right?