Skip to main content

ELECTRONIC SPACE

   

       Do you think we have abundant storage for information?.  Let us find out.
     We know 0 and 1 are called binary digit or bit.  With one bit we can represent two numbers 0,1. With two bit we can represent 4 numbers.

       Binary              Decimal
         0 0                       0
         0 1                       1
         1 0                       2
         1 1                       3
     With 32 bit, the maximum, positive value we can represent is 2147483647.

     Those days we had only 32 bit computer system.  To maintain time, the computer has to count seconds, hours and days.  The old  computer can count up to that above number.  Than it had to start from zero.

     Once, in USA air-traffic control room, the people failed to notice the computer count had reached the maximum.  So they had not reversed it to zero.  The time in those computers came to a stop.  And the air traffic was thrown into disarray for a few hours.

     Today, we have 64 bit, 128 bit computer systems.  And we have fairly enough electronic space.

     Now we are able to appreciate why clocks are circular?  The needles can go round and round and from beginning again and again.  A clever use of physical space.

     The digital picture quality goes on increasing.  HD - high definition.  UHD - ultra high definition.  Hence we require more and more electronic space or electronic memory.  The smart phones RAM (Random access memory) goes on increasing.  Once we measured memory in  mega bytes; To day in Gigabytes; Tomorrow in tetra bytes.  300 hours of video are uploaded in youtube every minute.  Imagine how much memory they require in their servers.

     We created more data in the past 2 years than in all of preceding history.  We are now facing storage problem.  The human DNA stores more efficiently than the electronic memory.

     Scientists say, they can store ( if experiment is successful) .  215 petabytes of data (215 million giga bytes) in a single gram of DNA.  In principle, we could store every bit of data ever created by humans in a single room.  Hope we will see that day.

     Think of those prehistoric days when people passed every bit of information from generation to generation only through oral communication and the storage was only their brains.  We have come a long way. 
------------------------------------------------------------------------------------------------ 

Comments

Popular posts from this blog

THE EARTH, A SUPER ORGANISM

     JOIN MY COURSE: "Become a programmer in a day with python"       A man called 'love lock' (what a name) proposed a theory called Gaia theory, named after Greek Goddess.      It says, "Earth is a self-regulating organism like a human being.  The organic life in it interacts with in-organic matter and maintains atmosphere, temperature and environment".  Hence the earth is still suitable for the life to thrive.      Imagine, in a particular place, there are lot of flowers.  Some flowers are white and some are darkly coloured.  We know, white reflects light and heat while dark absorbs the same.  White flowers can thrive in hot climate.  But dark flowers requires cold climate.  The absorption and reflection balances and the environment reaches average, warm temperature at which both the flowers can co-exist.  This is the essence of "Gaia" theory.      On our earth, ...

DISORDER IS THE "ORDER OF THE DAY"

         Imagine a balloon full of air.  The air molecules are moving randomly inside the balloon.  Let us pierce the balloon with a pin.  The air rushes out.  Why should not the air molecules stay inside the balloon safely and ignore the little hole?  That is not the way the world works.  The molecules always "want to occupy as many states as possible".  Hence the air goes out in the open to occupy more volume.   The things always goes into disorder (entropy) and the disorder increases with time.  The above statement is what we call "second law of thermodynamics".      Consider a cup of coffee on the table. Suppose the heat from entire room flows to your cup of coffee, the coffee will boil and the rest of the room will freeze.  Freezing means bringing things to order and arrangement.  It violates the second law.  Hence it will never happen.  Hence heat must flow from high ...

THE WORK HORSE "="

    One cannot think of  a mathematical step without 'is equal to ' .  It balances right hand side and left hand side.  It aids simplification and manipulation of a mathematical expression. example: 2(A+B)  = C 2A+2B  = C         2A = C-2B           A = C-2B/ 2   In an electronic calculator,  the pressing of ' = " sign executes an asthmatic expression  or simply calculates.       In computer languages, it plays very important role.                                                                 A = B   When a computer looks at this expression, the value stored in the location named B is just transferred to the storage named A .  After execution both A and B will have the same value an...