Sunday, August 30, 2009
BarCamp @ kanpur !!
http://en.wikipedia.org/wiki/BarCamp
Great opportunity for kanpurite Techies!!Its happening in Kanpur too !
http://barcamp.org/BarCampKanpur
and the best one for Tech students (BTech, BCA, MCA... ) infact to all (look at the topics, they are common) !
Check the link out, participate and volunteer the event!!
Help making Kanpur a place of learning enthusiasts!!
see you at the event! :)
Monday, August 17, 2009
How the data is sent !!
There were certain questions which always used to fascinate me, and I always kept finding solutions of them sub consciously. For eg- how does a child learn to speak the language, the emotional flow through words, decision making etc.
after I got internet connection at home what fascinated me most was 'how the things I type on my system appear at other screen'.
.
Or there will be no voltage flow => 0
For eg-
3698
=3*103+6*102+9*101+8*100
=3*1000 +6*100 +9*10+8*1
=3000+600+90+8
=3698
Yeah, that sounds childlike… as all of us know this.
As it came to computers, here we used the number system which could represent all the nos. just by using 2 digits, either 1 or 0.
1) division method
2) multiplication method
1=1
2=10
3=11
4=100
5=101 and so on similarly
A-> 0= 000
B-> 1= 001
C-> 2= 010
D-> 3= 011
E-> 4= 100
F-> 5= 101 and so on similarly
Hence think of a mail conversation which consists of just these 6 literals “ABCDEF”.
That means we need to send the binary value of A,B,C,D,E,F.
Or just 000 001 010 011 100 101
So now we have our information which can be sent from the sender after ASCII and binary conversion through a transmission media to the receiver and the receiver in turn is a system/computer which just inverts the process. That’s it receives the binary values converts them into ASCII values and then accordingly the English/language literals.