PDA

View Full Version : Storage Reference Point


AliOop
5th October 2004, 06:56 PM
I need a reference point. A reference point in relation to storage. We have KB, MB and GB. I know how many of one unit of measurement is need to make one of the next larger unit - KB to MB. But I haven't the slight idea how much I can store in any given unit. What will take up a KB of data? A letter? A note to oneself. What about a MB? -the OXford Dictionary or the bible? Pictures can't be used as an example because of what they are but at the very least I'd like to know how much written text a given unit of measurement will hold. In short I need a reference point. Thanks.

Jman
6th October 2004, 01:19 AM
One bit is a 1 or a 0. True or false.

Eight bits make up a byte. This also holds one 8 bit ASCII (http://en.wikipedia.org/wiki/Ascii) character. (Sorry Unicode, that's too complicated for this demonstration.)

A kilobyte can either be 10^3 (1000) or 2^10 (1024) which can get confusing. These would hold a thousand ASCII characters.

wc says that the GNU public license that came with xmms (about 3000 words) is 17992 bytes.

Assume a small novel is 200 pages, 100 words per page, 5 characters per word, and encoded in ASCII. 200*100*5 = 100,000 characters, about 100 KB. It will fit on a floppy. (Note that this is just an estimate.)

Multiply that average by the number of volumes in your local library, and you will get approximately the size of it. (Just text, nothing else.)

The New Oxford Annotated Bible (http://www.amazon.com/exec/obidos/tg/detail/-/019528478X/ref=pd_bxgy_img_2/103-7707469-2549408?v=glance&s=books) is about 2200 pages with high word density. 2200 pages * 300 words * 5 characters is more than 3,000,000 characters. But we're still in the megabyte range.

It takes a lot of text to fill a gigabyte, but you could probably fit the text most libraries on a modern hard drive.

Project Gutenberg (http://promo.net/pg/) has public domain texts in plain text, usually a few hundred KB each.

As for audio, my general rule is that a decent 128 kbps mp3 takes about 1 MB per minute. A CD will take about 10 times that.

The Internet Archive contains roughly a petabyte of data (http://www.archive.org/about/faqs.php).

Hopefully some of these random facts and estimates will help.